mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
13 lines
462 B
MySQL
13 lines
462 B
MySQL
|
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;
|