mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Added test for already fixed bug [#CLICKHOUSE-2]
This commit is contained in:
parent
7678db6e9d
commit
aca29588c7
@ -0,0 +1 @@
|
||||
0
|
@ -1,4 +1,4 @@
|
||||
DROP TABLE IF EXISTS test.prewhere;
|
||||
CREATE TABLE test.prewhere (x Array(UInt64), y ALIAS x, s String) ENGINE = MergeTree ORDER BY tuple()
|
||||
SELECT count() FROM test.prewhere PREWHERE (length(s) >= 1) = 0 WHERE NOT ignore(y)
|
||||
CREATE TABLE test.prewhere (x Array(UInt64), y ALIAS x, s String) ENGINE = MergeTree ORDER BY tuple();
|
||||
SELECT count() FROM test.prewhere PREWHERE (length(s) >= 1) = 0 WHERE NOT ignore(y);
|
||||
DROP TABLE test.prewhere;
|
Loading…
Reference in New Issue
Block a user