ClickHouse/tests/queries/0_stateless/01571_window_functions.sql
Alexander Kuzmenkov a02f3a895a fix the test
2021-06-03 13:01:44 +03:00

7 lines
250 B
SQL

-- { echo }
-- Another test for window functions because the other one is too long.
set allow_experimental_window_functions = 1;
-- expressions in window frame
select count() over (rows between 1 + 1 preceding and 1 + 1 following) from numbers(10);