!3101 增加一些internal类型的aggregate的支持(for postgis)

Merge pull request !3101 from 梦回溪笔/agg-master
This commit is contained in:
opengauss-bot
2023-03-14 02:22:17 +00:00
committed by Gitee

View File

@ -54,6 +54,17 @@ static void InternalAggIsSupported(const char *aggName)
"group_concat", "group_concat",
"json_objectagg", "json_objectagg",
"json_arrayagg" "json_arrayagg"
#ifndef ENABLE_MULTIPLE_NODES
,
"st_collect",
"st_clusterintersecting",
"st_clusterwithin",
"st_polygonize",
"st_makeline",
"st_asmvt",
"st_asgeobuf",
"st_asflatgeobuf"
#endif
}; };
uint len = lengthof(supportList); uint len = lengthof(supportList);