mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
8 lines
449 B
SQL
8 lines
449 B
SQL
-- Regression test for https://github.com/ClickHouse/ClickHouse/issues/59919
|
|
SET enable_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;
|