This is an automated email from the ASF dual-hosted git repository. morrysnow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 4ac82fd3677 [opt](Nereids) add group_array as collect_list alias (#25836) 4ac82fd3677 is described below commit 4ac82fd3677d5590bb42632ce0bbe7003d8a10e1 Author: morrySnow <101034200+morrys...@users.noreply.github.com> AuthorDate: Wed Oct 25 13:46:40 2023 +0800 [opt](Nereids) add group_array as collect_list alias (#25836) --- .../main/java/org/apache/doris/catalog/BuiltinAggregateFunctions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/BuiltinAggregateFunctions.java b/fe/fe-core/src/main/java/org/apache/doris/catalog/BuiltinAggregateFunctions.java index d5b71603e45..5a101e71014 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/catalog/BuiltinAggregateFunctions.java +++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/BuiltinAggregateFunctions.java @@ -91,7 +91,7 @@ public class BuiltinAggregateFunctions implements FunctionHelper { agg(BitmapUnion.class, "bitmap_union"), agg(BitmapUnionCount.class, "bitmap_union_count"), agg(BitmapUnionInt.class, "bitmap_union_int"), - agg(CollectList.class, "collect_list"), + agg(CollectList.class, "collect_list", "group_array"), agg(CollectSet.class, "collect_set", "group_uniq_array"), agg(Count.class, "count"), agg(CountByEnum.class, "count_by_enum"), --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org