liuyongvs opened a new pull request, #3233:
URL: https://github.com/apache/calcite/pull/3233
array_compact(array) - Removes null values from the array.
Examples:
> SELECT array_compact(array(1, 2, 3, null));
{{ [1,2,3]}}
> SELECT array_compact(array("a", "b", "c"));
{{ ["a","b","c"]}}
--
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]