From 35c9619444d7fd32644e347198c951d240a211e6 Mon Sep 17 00:00:00 2001 From: tavplubix Date: Tue, 13 Apr 2021 18:17:43 +0300 Subject: [PATCH] Update 01181_db_atomic_drop_on_cluster.sql --- tests/queries/0_stateless/01181_db_atomic_drop_on_cluster.sql | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/queries/0_stateless/01181_db_atomic_drop_on_cluster.sql b/tests/queries/0_stateless/01181_db_atomic_drop_on_cluster.sql index ca393c36617..24283a0e8e3 100644 --- a/tests/queries/0_stateless/01181_db_atomic_drop_on_cluster.sql +++ b/tests/queries/0_stateless/01181_db_atomic_drop_on_cluster.sql @@ -1,5 +1,4 @@ DROP TABLE IF EXISTS test_repl ON CLUSTER test_shard_localhost SYNC; - CREATE TABLE test_repl ON CLUSTER test_shard_localhost (n UInt64) ENGINE ReplicatedMergeTree('/clickhouse/test_01181/{database}/test_repl','r1') ORDER BY tuple(); DETACH TABLE test_repl ON CLUSTER test_shard_localhost SYNC; ATTACH TABLE test_repl ON CLUSTER test_shard_localhost;