ClickHouse/tests/queries/0_stateless/02562_with_fill_nullable.sql
Alexey Milovidov 8c9be17b91 Add a test
2023-02-09 21:49:11 +01:00

5 lines
290 B
SQL

SELECT toNullable('2023-02-09'::Date + number * 10) AS d FROM numbers(2) ORDER BY d WITH FILL;
SELECT '---';
SELECT number % 2 ? NULL : toNullable('2023-02-09'::Date + number) AS d FROM numbers(5) ORDER BY d ASC NULLS LAST WITH FILL;
-- TODO: NULLS FIRST does not work correctly with FILL.