mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Update test
This commit is contained in:
parent
fe7cff5c1c
commit
0c2ea94efe
@ -1,6 +1,6 @@
|
||||
SELECT count()
|
||||
FROM t_02156_merge1
|
||||
PREWHERE (k = 3) AND notEmpty(v)
|
||||
PREWHERE notEmpty(v) AND (k = 3)
|
||||
2
|
||||
SELECT count()
|
||||
FROM t_02156_merge2
|
||||
|
@ -1,4 +1,5 @@
|
||||
SET optimize_move_to_prewhere = 1;
|
||||
SET enable_multiple_prewhere_read_steps = 1;
|
||||
|
||||
DROP TABLE IF EXISTS t_02156_mt1;
|
||||
DROP TABLE IF EXISTS t_02156_mt2;
|
||||
@ -8,8 +9,8 @@ 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;
|
||||
CREATE TABLE t_02156_mt2 (k UInt32, v String) ENGINE = MergeTree ORDER BY k;
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user