-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support window functions like row_number() #135
Comments
There actually used to be support for an OFFSET clause and it looks like the query engine still supports that functionality, it was only unsupported by the new parser but looks like making this work again it fairly easy: #136 |
Fixed in v0.3.4 |
I was looking to number the rows with a query like SELECT x, y, row_number() OVER (ORDER BY y) AS row_number FROM t0 ORDER BY x; |
I see. Adding just the |
This would be nice to have.
The text was updated successfully, but these errors were encountered: