win_func_mutable_resource.sql 176 B

12345
  1. /* postgres can not */
  2. select median(x) over w,median(x) over w from (
  3. select x, 0 as y from (select AsList(1,2,3,4,5,6,7,8,9,10) as x) flatten by x
  4. )
  5. window w as (order by y)