Skip to content

[SPARK-27207][SQL] : Ensure aggregate buffers are initialized again for So… #24149

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

Closed
wants to merge 17 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ case class AggregateExpression(
* ([[aggBufferAttributes]]) of an aggregation buffer which is used to hold partial aggregate
* results. At runtime, multiple aggregate functions are evaluated by the same operator using a
* combined aggregation buffer which concatenates the aggregation buffers of the individual
* aggregate functions.
* aggregate functions. Please note that aggregate functions should be stateless.
*
* Code which accepts [[AggregateFunction]] instances should be prepared to handle both types of
* aggregate functions.
Expand Down