mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 03:52:15 +00:00
11 lines
221 B
SQL
11 lines
221 B
SQL
-- this SELECT produces empty chunk in FillingTransform
|
|
|
|
SELECT
|
|
2 AS x,
|
|
arrayJoin([NULL, NULL, NULL])
|
|
GROUP BY
|
|
GROUPING SETS (
|
|
(0),
|
|
([NULL, NULL, NULL]))
|
|
ORDER BY x ASC WITH FILL FROM 1 TO 10;
|