looks like integration test is failing due to mismatch between logical schema and physical schema for window queries, i will dig into this.
thanks, it might be because of some edge cases that i did miss. i didn't find time to fix it but so far this query will fail:
> select max(c1) over () max_c1, max(c1) over (partition by c2) max_c1_by_c2 from test;
Plan("Schema contains duplicate unqualified field name 'MAX(c1)'")
Originally posted by @jimexist in #55 (comment)