-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
exec: support window frames for window functions in vectorized engine #37037
Comments
@DrewKimball I reopened this issue because the already supported window functions also need to be taught about the window frames (e.g. |
I see. Sounds good |
Oh, actually I think we're good to close this after all once first_value, last_value and nth_value are done. Non-aggregate window functions other than first_value, last_value and nth_value seem to all ignore the window frame:
Postgres doesn't really have any documentation for this, but here's a relevant quote from MySql docs:
|
Oh yeah, I think you're right. We don't look at the frames for those window functions in the row engine either, and I guess we just unnecessarily prohibited frames for them in the vectorized engine. |
No description provided.
The text was updated successfully, but these errors were encountered: