JiajunBernoulli commented on code in PR #3260: URL: https://github.com/apache/calcite/pull/3260#discussion_r1230335623
########## site/_docs/reference.md: ########## @@ -2661,6 +2662,9 @@ BigQuery's type system uses confusingly different names for types and functions: | b | ARRAY_LENGTH(array) | Synonym for `CARDINALITY` | s | ARRAY_MAX(array) | Returns the maximum value in the *array* | s | ARRAY_MIN(array) | Returns the minimum value in the *array* +| s | ARRAY_POSITION(array, element) | Returns the (1-based) index of the first *element* of the *array* as long +| s | ARRAY_REMOVE(array, element) | Remove all elements that equal to *element* from the *array* +| s | ARRAY_PREPEND(array, element) | Appends an *element* to the beginning of the *array* and returns the result. If the *array* itself is null, the function will return null. If an *element* to add is null, the null *element* will be added to the beginning of the *array* Review Comment: Same suggestion as `ARRAY_APPEND`. -- 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]
