aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/window/win_expr_bounds.sql
blob: 64e7387bc6deac456ca94bfd599efd2c2556e002 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* syntax version 1 */
/* postgres can not */
use plato;

declare $begin as Int32;

select
    key, subkey,
    COUNT(*) over w as cnt
from Input4
window
    w as (order by key, subkey rows between $begin preceding and 1 + 1 following)
order by key, subkey;