ClickHouse/tests/queries/0_stateless/01571_window_functions.reference

18 lines
437 B
Plaintext

-- { 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);
3
4
5
5
5
5
5
5
4
3
-- signed and unsigned in offset do not cause logical error
select count() over (rows between 2 following and 1 + -1 following) FROM numbers(10); -- { serverError 36 }