mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
3 lines
194 B
SQL
3 lines
194 B
SQL
CREATE TABLE t (x Int8) ENGINE MergeTree ORDER BY x;
|
|
INSERT INTO t VALUES (1);
|
|
SELECT arrayJoin([tuple((toNullable(10) * toLowCardinality(20)) < materialize(30))]) AS row FROM t WHERE row.1 = 0; |