mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
Add test for ReplicatedMergeTree
This commit is contained in:
parent
769ff6d273
commit
53298f5a17
@ -44,6 +44,16 @@ INSERT INTO table_tiny_log_02525 VALUES (1, 'a'), (2, 'b'), (3, 'c');
|
||||
SELECT * FROM table_tiny_log_02525;
|
||||
DROP TEMPORARY TABLE table_tiny_log_02525;
|
||||
|
||||
DROP TEMPORARY TABLE IF EXISTS table_replicated_merge_tree_02525;
|
||||
CREATE TEMPORARY TABLE table_replicated_merge_tree_02525
|
||||
(
|
||||
id UInt64,
|
||||
info String
|
||||
)
|
||||
ENGINE ReplicatedMergeTree('/clickhouse/tables/{database}/test_02525/table_replicated_merge_tree_02525', 'r1')
|
||||
ORDER BY id
|
||||
PRIMARY KEY id; -- { serverError 80 }
|
||||
|
||||
DROP TEMPORARY TABLE IF EXISTS table_keeper_map_02525;
|
||||
CREATE TEMPORARY TABLE table_keeper_map_02525
|
||||
(
|
||||
|
Loading…
Reference in New Issue
Block a user