Open pavanvd opened 9 years ago
The following test case fails in XL:
postgres=# CREATE TABLE test (a int, b int); postgres=# EXPLAIN SELECT last_value(a) OVER (PARTITION by b) FROM (SELECT * FROM test ORDER BY a) AS s ORDER BY a; ERROR: failed to deconstruct sort operators into partitioning/ordering operators
The following test case fails in XL: