mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
fix test
This commit is contained in:
parent
3319934055
commit
56887ccd92
@ -11,7 +11,7 @@ CREATE TABLE merge (id UInt64) ENGINE = Merge(currentDatabase(), '^mt[0-9]+$');
|
||||
INSERT INTO mt1 VALUES (1);
|
||||
INSERT INTO mt2 VALUES (1);
|
||||
|
||||
EXPLAIN SELECT count() FROM merge;
|
||||
EXPLAIN SELECT count() FROM merge settings allow_experimental_analyzer=0;
|
||||
|
||||
SELECT count() FROM merge;
|
||||
|
||||
@ -19,7 +19,7 @@ CREATE TABLE mt3 (id UInt64) ENGINE = TinyLog;
|
||||
|
||||
INSERT INTO mt2 VALUES (2);
|
||||
|
||||
EXPLAIN SELECT count() FROM merge;
|
||||
EXPLAIN SELECT count() FROM merge settings allow_experimental_analyzer=0;
|
||||
|
||||
DROP TABLE IF EXISTS mt1;
|
||||
DROP TABLE IF EXISTS mt2;
|
||||
|
Loading…
Reference in New Issue
Block a user