mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
8 lines
461 B
MySQL
8 lines
461 B
MySQL
|
-- 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;
|