JiajunBernoulli commented on code in PR #3260:
URL: https://github.com/apache/calcite/pull/3260#discussion_r1230329536
##########
core/src/main/java/org/apache/calcite/runtime/SqlFunctions.java:
##########
@@ -3894,6 +3894,14 @@ public static List compact(List list) {
return result;
}
+ /** Support the ARRAY_APPEND function. */
+ public static List arrayAppend(List list, Object element) {
+ final List result = new ArrayList(list.size() + 1);
Review Comment:
Can you resolve it?

--
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]