This commit is contained in:
skyoct 2023-12-15 13:08:31 +00:00
parent 3319934055
commit 56887ccd92

View File

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