mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
7 lines
226 B
SQL
7 lines
226 B
SQL
--https://github.com/ClickHouse/ClickHouse/issues/58906
|
|
SELECT
|
|
count(_CAST(NULL, 'Nullable(Nothing)')),
|
|
round(avg(_CAST(NULL, 'Nullable(Nothing)'))) AS k
|
|
FROM numbers(256)
|
|
SETTINGS allow_experimental_analyzer = 1;
|