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

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