mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Test: tuple elimination with analyzer
This commit is contained in:
parent
20a45b4073
commit
b6057bd83c
@ -0,0 +1 @@
|
|||||||
|
(0)
|
@ -0,0 +1,9 @@
|
|||||||
|
DROP TABLE IF EXISTS test;
|
||||||
|
|
||||||
|
SET allow_suspicious_low_cardinality_types = true, allow_experimental_analyzer = true;
|
||||||
|
|
||||||
|
CREATE TABLE test (`id` LowCardinality(UInt32)) ENGINE = MergeTree ORDER BY id AS SELECT 0;
|
||||||
|
|
||||||
|
SELECT tuple(tuple(id) = tuple(1048576)) FROM test;
|
||||||
|
|
||||||
|
DROP TABLE test;
|
Loading…
Reference in New Issue
Block a user