-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
ArraySum #8325
ArraySum #8325
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Glad to see this new feature 👍
array_sum([1, 3, 5]), | ||
array_sum([1.1, 2.2]), | ||
array_sum([1, -1, 0, 22]), | ||
array_sum([1, -1, 0, null, 22]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
array_sum([1, -1, 0, null, 22]); | |
array_sum([1, -1, 0, null, 22]), | |
array_sum([]), | |
array_sum([null]); |
Signed-off-by: jayzhan211 <[email protected]>
Signed-off-by: jayzhan211 <[email protected]>
Signed-off-by: jayzhan211 <[email protected]>
236dd28
to
a4d6b22
Compare
I am trying to go through old PRs and make sure we don't lose any -- this one has not had much activity and has accumulated conflicts. Marking as draft so it isn't on the review queue. Please feel free to reopen / mark as ready for review if it is |
Thank you for your contribution. Unfortunately, this pull request is stale because it has been open 60 days with no activity. Please remove the stale label or comment or this will be closed in 7 days. |
Which issue does this PR close?
Ref #7213
Ref #7214
Close #7242
Rationale for this change
Alternative approach to #7242
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?
Additional Context
SELECT list_aggregate([2, 4, 8, 42], 'string_agg', '|')
, so dont close Implementarray_aggregate
function #7213 .