mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 06:32:08 +00:00
20 lines
555 B
SQL
20 lines
555 B
SQL
DROP TABLE IF EXISTS constCondOptimization;
|
|
|
|
CREATE TABLE constCondOptimization
|
|
(
|
|
d Date DEFAULT today(),
|
|
time DateTime DEFAULT now(),
|
|
n Int64
|
|
)
|
|
ENGINE = MergeTree ORDER BY (time, n) SETTINGS index_granularity = 1;
|
|
|
|
INSERT INTO constCondOptimization (n) SELECT number FROM system.numbers LIMIT 10000;
|
|
|
|
-- The queries should use index.
|
|
SET max_rows_to_read = 2;
|
|
|
|
SELECT count() FROM constCondOptimization WHERE if(0, 1, n = 1000);
|
|
SELECT count() FROM constCondOptimization WHERE if(0, 1, n = 1000) AND 1 = 1;
|
|
|
|
DROP TABLE constCondOptimization;
|