mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
11 lines
221 B
MySQL
11 lines
221 B
MySQL
|
-- 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;
|