mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
504a2dd9d9
v2: fix for LowCardinality Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
8 lines
461 B
SQL
8 lines
461 B
SQL
-- Regression test for https://github.com/ClickHouse/ClickHouse/issues/59919
|
|
SET allow_experimental_analyzer=1;
|
|
|
|
SELECT toTypeName(sum(toNullable('a') IN toNullable('a'))) AS x;
|
|
SELECT toTypeName(count(toNullable('a') IN toNullable('a'))) AS x;
|
|
SELECT toTypeName(sum(toFixedString('a', toLowCardinality(toNullable(1))) IN toFixedString('a', 1))) AS x;
|
|
SELECT toTypeName(count(toFixedString('a', toLowCardinality(toNullable(1))) IN toFixedString('a', 1))) AS x;
|