mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 02:52:13 +00:00
44 lines
2.7 KiB
SQL
44 lines
2.7 KiB
SQL
SET optimize_move_to_prewhere = 1;
|
|
SET enable_multiple_prewhere_read_steps = 1;
|
|
SET prefer_localhost_replica = 1; -- Make sure plan is reliable
|
|
|
|
DROP TABLE IF EXISTS t_02156_mt1;
|
|
DROP TABLE IF EXISTS t_02156_mt2;
|
|
DROP TABLE IF EXISTS t_02156_log;
|
|
DROP TABLE IF EXISTS t_02156_dist;
|
|
DROP TABLE IF EXISTS t_02156_merge1;
|
|
DROP TABLE IF EXISTS t_02156_merge2;
|
|
DROP TABLE IF EXISTS t_02156_merge3;
|
|
|
|
CREATE TABLE t_02156_mt1 (k UInt32, v String) ENGINE = MergeTree ORDER BY k SETTINGS min_bytes_for_wide_part=0;
|
|
CREATE TABLE t_02156_mt2 (k UInt32, v String) ENGINE = MergeTree ORDER BY k SETTINGS min_bytes_for_wide_part=0;
|
|
CREATE TABLE t_02156_log (k UInt32, v String) ENGINE = Log;
|
|
|
|
CREATE TABLE t_02156_dist (k UInt32, v String) ENGINE = Distributed(test_shard_localhost, currentDatabase(), t_02156_mt1);
|
|
|
|
CREATE TABLE t_02156_merge1 (k UInt32, v String) ENGINE = Merge(currentDatabase(), 't_02156_mt1|t_02156_mt2');
|
|
CREATE TABLE t_02156_merge2 (k UInt32, v String) ENGINE = Merge(currentDatabase(), 't_02156_mt1|t_02156_log');
|
|
CREATE TABLE t_02156_merge3 (k UInt32, v String) ENGINE = Merge(currentDatabase(), 't_02156_mt2|t_02156_dist');
|
|
|
|
INSERT INTO t_02156_mt1 SELECT number, toString(number) FROM numbers(10000);
|
|
INSERT INTO t_02156_mt2 SELECT number, toString(number) FROM numbers(10000);
|
|
INSERT INTO t_02156_log SELECT number, toString(number) FROM numbers(10000);
|
|
|
|
SELECT replaceRegexpAll(explain, '__table1\.|_UInt8', '') FROM (EXPLAIN actions=1 SELECT count() FROM t_02156_merge1 WHERE k = 3 AND notEmpty(v)) WHERE explain LIKE '%Prewhere%' OR explain LIKE '%Filter column%' settings enable_analyzer=1;
|
|
SELECT replaceRegexpAll(explain, '__table1\.|_UInt8', '') FROM (EXPLAIN actions=1 SELECT count() FROM t_02156_merge1 WHERE k = 3 AND notEmpty(v)) WHERE explain LIKE '%Prewhere%' OR explain LIKE '%Filter column%' settings enable_analyzer=0;
|
|
SELECT count() FROM t_02156_merge1 WHERE k = 3 AND notEmpty(v);
|
|
|
|
SELECT replaceRegexpAll(explain, '__table1\.|_UInt8', '') FROM (EXPLAIN actions=1 SELECT count() FROM t_02156_merge2 WHERE k = 3 AND notEmpty(v)) WHERE explain LIKE '%Prewhere%' OR explain LIKE '%Filter column%';
|
|
SELECT count() FROM t_02156_merge2 WHERE k = 3 AND notEmpty(v);
|
|
|
|
SELECT replaceRegexpAll(explain, '__table1\.|_UInt8', '') FROM (EXPLAIN actions=1 SELECT count() FROM t_02156_merge3 WHERE k = 3 AND notEmpty(v)) WHERE explain LIKE '%Prewhere%' OR explain LIKE '%Filter column%';
|
|
SELECT count() FROM t_02156_merge3 WHERE k = 3 AND notEmpty(v);
|
|
|
|
DROP TABLE IF EXISTS t_02156_mt1;
|
|
DROP TABLE IF EXISTS t_02156_mt2;
|
|
DROP TABLE IF EXISTS t_02156_log;
|
|
DROP TABLE IF EXISTS t_02156_dist;
|
|
DROP TABLE IF EXISTS t_02156_merge1;
|
|
DROP TABLE IF EXISTS t_02156_merge2;
|
|
DROP TABLE IF EXISTS t_02156_merge3;
|