ClickHouse/tests/queries/0_stateless/01511_prewhere_with_virtuals.sql

15 lines
504 B
MySQL
Raw Normal View History

2020-10-08 12:46:28 +00:00
DROP TABLE IF EXISTS test_not_found_column_nothing;
2020-11-11 15:29:36 +00:00
CREATE TABLE test_not_found_column_nothing
2020-10-08 12:46:28 +00:00
(
col001 UInt8,
col002 UInt8
) Engine=MergeTree ORDER BY tuple() PARTITION BY col001 % 3;
INSERT INTO test_not_found_column_nothing(col001) SELECT number FROM numbers(11);
SELECT _part, count() FROM test_not_found_column_nothing PREWHERE col001 % 3 != 0 GROUP BY _part ORDER BY _part;
SELECT _part FROM test_not_found_column_nothing PREWHERE col001 = 0;
2020-11-11 15:29:36 +00:00
DROP TABLE test_not_found_column_nothing;