ClickHouse/tests/queries/0_stateless/02019_multiple_weird_with_fill.sql
Artur Filatenkov 6a3cb0d9ea rename tests
2021-09-29 17:43:35 +03:00

15 lines
175 B
SQL

SELECT
x,
-x,
y
FROM
(
SELECT
5 AS x,
'Hello' AS y
)
ORDER BY
x ASC WITH FILL FROM 3 TO 7,
y ASC,
-x ASC WITH FILL FROM -10 TO -1;