-
Notifications
You must be signed in to change notification settings - Fork 67
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
Stateful expressions in user defined functions #5092
Labels
bug
Something isn't working
Comments
mattnibs
added a commit
that referenced
this issue
Mar 27, 2024
This commit fixes an issue with using aggregation expressions user-defined functions where there wasn't a separate state per textual invocation. Closes #5092
mattnibs
added a commit
that referenced
this issue
Mar 27, 2024
This commit fixes an issue with using aggregation expressions user-defined functions where there wasn't a separate state per textual invocation. Closes #5092
nwt
pushed a commit
that referenced
this issue
Jun 6, 2024
This commit fixes an issue with using aggregation expressions user-defined functions where there wasn't a separate state per textual invocation. Closes #5092
mattnibs
added a commit
that referenced
this issue
Jun 7, 2024
This commit fixes an issue with using aggregation expressions user-defined functions where there wasn't a separate state per textual invocation. Closes #5092
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Aggregations are supposed to carry separate state for each textual invocation but this rule breaks apart when using aggregation expressions in user defined functions. Observe:
currently returns
when it should be returning
[1,1,1]
.The text was updated successfully, but these errors were encountered: