mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Fix tests
This commit is contained in:
parent
3253638969
commit
bf4af9713c
@ -2,11 +2,11 @@ DROP TABLE IF EXISTS i20203_1;
|
||||
DROP TABLE IF EXISTS i20203_2;
|
||||
|
||||
CREATE TABLE i20203_1 (a Int8)
|
||||
ENGINE = ReplicatedMergeTree('/clickhouse/tables/01715_background_checker/i20203','r1')
|
||||
ENGINE = ReplicatedMergeTree('/clickhouse/01715_background_checker_i20203', 'r1')
|
||||
ORDER BY tuple();
|
||||
|
||||
CREATE TABLE i20203_2 (a Int8)
|
||||
ENGINE = ReplicatedMergeTree('/clickhouse/tables/01715_background_checker/i20203','r2')
|
||||
ENGINE = ReplicatedMergeTree('/clickhouse/01715_background_checker_i20203', 'r2')
|
||||
ORDER BY tuple();
|
||||
|
||||
DETACH TABLE i20203_2;
|
||||
@ -22,5 +22,7 @@ SELECT num_tries < 50
|
||||
FROM system.replication_queue
|
||||
WHERE table = 'i20203_2' AND database = currentDatabase();
|
||||
|
||||
ATTACH TABLE i20203_1;
|
||||
|
||||
DROP TABLE IF EXISTS i20203_1;
|
||||
DROP TABLE IF EXISTS i20203_2;
|
||||
|
@ -572,6 +572,7 @@
|
||||
"01603_rename_overwrite_bug",
|
||||
"01646_system_restart_replicas_smoke", // system restart replicas is a global query
|
||||
"01676_dictget_in_default_expression",
|
||||
"01715_background_checker_blather_zookeeper",
|
||||
"attach",
|
||||
"ddl_dictionaries",
|
||||
"dictionary",
|
||||
|
Loading…
Reference in New Issue
Block a user