HappenLee commented on code in PR #47965: URL: https://github.com/apache/doris/pull/47965#discussion_r1959038558
########## be/src/vec/aggregate_functions/aggregate_function_collect.h: ########## @@ -306,6 +309,67 @@ struct AggregateFunctionCollectListData<StringRef, HasLimit> { } }; +template <typename HasLimit> +struct AggregateFunctionCollectListData<void, HasLimit> { + using ElementType = StringRef; + using Self = AggregateFunctionCollectListData<void, HasLimit>; + MutableColumnPtr column_data; + Int64 max_size = -1; + + AggregateFunctionCollectListData() {} Review Comment: really need the contruct? seems unless -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org