rubenada commented on code in PR #4202: URL: https://github.com/apache/calcite/pull/4202#discussion_r1970048611
########## site/_docs/reference.md: ########## @@ -2785,24 +2785,24 @@ In the following: | s | ARRAY_APPEND(array, element) | Appends an *element* to the end of the *array* and returns the result. Type of *element* should be similar to type of the elements of the *array*. If the *array* is null, the function will return null. If an *element* that is null, the null *element* will be added to the end of the *array* | s | ARRAY_COMPACT(array) | Removes null values from the *array* | b | ARRAY_CONCAT(array [, array ]*) | Concatenates one or more arrays. If any input argument is `NULL` the function returns `NULL` -| s | ARRAY_CONTAINS(array, element) | Returns true if the *array* contains the *element* -| s | ARRAY_DISTINCT(array) | Removes duplicate values from the *array* that keeps ordering of elements -| s | ARRAY_EXCEPT(array1, array2) | Returns an array of the elements in *array1* but not in *array2*, without duplicates +| h s | ARRAY_CONTAINS(array, element) | Returns true if the *array* contains the *element* Review Comment: Shouldn't we add the `h` also on the ARRAY operator? (line 2784) -- 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]
