rtpsw commented on code in PR #34311: URL: https://github.com/apache/arrow/pull/34311#discussion_r1125559892
########## cpp/src/arrow/compute/exec/aggregate_node.cc: ########## @@ -697,16 +925,22 @@ class GroupByNode : public ExecNode, public TracedNode { } int output_task_group_id_; + std::unique_ptr<GroupingSegmenter> segmenter_; + std::vector<Datum> segmenter_values_; const std::vector<int> key_field_ids_; + const std::vector<int> segment_key_field_ids_; + const std::vector<std::vector<TypeHolder>> agg_src_types_; const std::vector<std::vector<int>> agg_src_fieldsets_; const std::vector<Aggregate> aggs_; - const std::vector<const HashAggregateKernel*> agg_kernels_; + std::vector<const HashAggregateKernel*> agg_kernels_; Review Comment: This is now fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org