Add test for ReplicatedMergeTree

This commit is contained in:
Roman Vasin 2023-02-14 11:16:00 +00:00
parent 769ff6d273
commit 53298f5a17

View File

@ -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
(