aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/window/win_with_as_table.sql
blob: bcd5b5a3f84cb72b5363ce6ab32e1e7f17356b88 (plain) (blame)
1
2
3
4
5
6
7
/* postgres can not */
select k,
  SUM(k) over w1 as s1,
  SUM(k) over w2 as s2
from as_table(AsList(AsStruct(1 as k), AsStruct(2 as k)))
window w1 as (order by k), w2 as (order by k desc)
order by k;