mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Update tests.
This commit is contained in:
parent
ae21aca3a3
commit
de06fd0051
@ -1,2 +1,3 @@
|
||||
43
|
||||
1
|
||||
Nullable(UInt8) Nullable(Int32)
|
||||
|
@ -12,6 +12,7 @@ CREATE TABLE test_prewhere_column_type (`a` LowCardinality(String), `x` Nullable
|
||||
INSERT INTO test_prewhere_column_type VALUES ('', 2);
|
||||
|
||||
SELECT a, y FROM test_prewhere_column_type prewhere (x = 2) AS y;
|
||||
SELECT a, toTypeName(x = 2), toTypeName(x) FROM test_prewhere_column_type where (x = 2) AS y;
|
||||
|
||||
DROP TABLE test_prewhere_default_column;
|
||||
DROP TABLE test_prewhere_column_type;
|
||||
|
Loading…
Reference in New Issue
Block a user