ClickHouse/tests/queries/0_stateless/02579_fill_empty_chunk.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
221 B
MySQL
Raw Normal View History

2023-02-26 02:30:54 +00:00
-- 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;