github-actions[bot] commented on code in PR #40697:
URL: https://github.com/apache/doris/pull/40697#discussion_r1754385093
##########
be/src/vec/aggregate_functions/aggregate_function_collect.h:
##########
@@ -512,6 +512,71 @@ struct AggregateFunctionArrayAggData<StringRef> {
}
};
+template <>
+struct AggregateFunctionArrayAggData<void> {
+ using ElementType = StringRef;
+ using Self = AggregateFunctionArrayAggData<void>;
+ MutableColumnPtr column_data;
+
+ AggregateFunctionArrayAggData() {}
Review Comment:
warning: use '= default' to define a trivial default constructor
[modernize-use-equals-default]
```suggestion
AggregateFunctionArrayAggData() = default;
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]