aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/select_win_expr_partition.sql
blob: 47288c6cd46e99c3d4d6d7b7f013a5efe02299ac (plain) (blame)
1
2
3
4
5
6
7
8
--!syntax_pg
select row_number() over w as l from (
  values (1,2,3),(1,5,3)) a(x,y,z)
group by x+1,y
window w as (
  partition by x+1 + sum(z)
)
order by l