mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
13 lines
259 B
SQL
13 lines
259 B
SQL
-- this SELECT produces empty chunk in FillingTransform
|
|
|
|
SET enable_positional_arguments = 0;
|
|
|
|
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;
|