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

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