snuyanzin commented on code in PR #22144:
URL: https://github.com/apache/flink/pull/22144#discussion_r1139401795
##########
docs/data/sql_functions.yml:
##########
@@ -617,6 +617,9 @@ collection:
- sql: ARRAY_DISTINCT(haystack)
table: haystack.arrayDistinct()
description: Returns an array with unique elements. If the array itself is
null, the function will return null. Keeps ordering of elements.
+ - sql: ARRAY_REMOVE(haystack, needle)
+ table: haystack.arrayRemove(needle)
+ description: Remove all elements that equal to element from array. If the
array itself is null, the function will return null. Keeps ordering of elements.
Review Comment:
Sorry, looks like missed it
```suggestion
description: Removes all elements that equal to element from array. If
the array itself is null, the function will return null. Keeps ordering of
elements.
```
--
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]