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

13 lines
462 B
MySQL
Raw Normal View History

2020-10-08 12:46:28 +00:00
DROP TABLE IF EXISTS test_not_found_column_nothing;
CREATE TABLE test_not_found_column_nothing
(
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;