aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/select_win_max.sql
blob: 64bb771e85f29dd9cd5d4fde79c95a3058287904 (plain) (blame)
1
2
3
4
5
6
7
8
--!syntax_pg
select x,y,max(x) over w 
from (values (1,2),(1,3),(2,4),(2,5)) as a(x,y)
window w as ();

select x,y,max(x) over w 
from (values (1,2),(1,3),(2,4),(2,5)) as a(x,y)
window w as (order by y);