aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/window/table_funcs_spec_with_win_func.sqlx
blob: ab63366f157e7f34c93cd051fe4693c315753d25 (plain) (blame)
1
2
3
4
5
6
/* postgres can not */
select
  key, TablePath() as tab_path, ROW_NUMBER() over w1
from plato.Input
window w1 as (order by key)
order by key;