edponce commented on a change in pull request #11452: URL: https://github.com/apache/arrow/pull/11452#discussion_r732380062
########## File path: cpp/src/arrow/compute/kernels/hash_aggregate.cc ########## @@ -1677,6 +1703,177 @@ struct GroupedMinMaxImpl final : public GroupedAggregator { ScalarAggregateOptions options_; }; +// For binary-like types +// In principle, FixedSizeBinary could use base implementation +template <typename Type> +struct GroupedMinMaxImpl<Type, + enable_if_t<is_base_binary_type<Type>::value || + std::is_same<Type, FixedSizeBinaryType>::value>> + final : public GroupedAggregator { + Status Init(ExecContext* ctx, const FunctionOptions* options) override { + ctx_ = ctx; + options_ = *checked_cast<const ScalarAggregateOptions*>(options); + // type_ initialized by MinMaxInit + has_values_ = TypedBufferBuilder<bool>(ctx->memory_pool()); + has_nulls_ = TypedBufferBuilder<bool>(ctx->memory_pool()); + return Status::OK(); + } + + Status Resize(int64_t new_num_groups) override { + auto added_groups = new_num_groups - num_groups_; + num_groups_ = new_num_groups; + mins_.resize(new_num_groups); + maxes_.resize(new_num_groups); + RETURN_NOT_OK(has_values_.Append(added_groups, false)); + RETURN_NOT_OK(has_nulls_.Append(added_groups, false)); + return Status::OK(); + } + + Status Consume(const ExecBatch& batch) override { + return VisitGroupedValues<Type>( + batch, + [&](uint32_t g, util::string_view val) { + if (!mins_[g] || val < util::string_view(*mins_[g])) { + if (!mins_[g]) { + ARROW_ASSIGN_OR_RAISE( + mins_[g], AllocateResizableBuffer(val.size(), ctx_->memory_pool())); + } + RETURN_NOT_OK(mins_[g]->Resize(val.size(), /*shrink_to_fit=*/false)); Review comment: Wouldn't the `Resize` operation only be needed if `mins_[g]` was not allocated right before it? The allocation is of the same size as the resize operation. -- 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