sqlite-parser icon indicating copy to clipboard operation
sqlite-parser copied to clipboard

OVER clause incorrect validation

Open vmasalov opened this issue 4 years ago • 0 comments

The following query is failing to validate.

SELECT x, y, row_number() OVER (ORDER BY y) AS row_number FROM t0 ORDER BY x;

See sqllite window function official documentation.

vmasalov avatar Jul 01 '20 18:07 vmasalov