Skip to content

Commit

Permalink
[CALCITE-6118] Missing empty ARRAY function usage in reference doc
Browse files Browse the repository at this point in the history
  • Loading branch information
chucheng92 committed Nov 16, 2023
1 parent 5503451 commit 8aca01c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/_docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -2654,7 +2654,7 @@ BigQuery's type system uses confusingly different names for types and functions:
| p | expr :: type | Casts *expr* to *type*
| m | expr1 <=> expr2 | Whether two values are equal, treating null values as the same, and it's similar to `IS NOT DISTINCT FROM`
| * | ACOSH(numeric) | Returns the inverse hyperbolic cosine of *numeric*
| s | ARRAY(expr [, expr ]*) | Construct an array in Apache Spark
| s | ARRAY(expr [, expr ]*) | Construct an array in Apache Spark. The function allows users to use `ARRAY()` to create an empty array
| 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`
Expand Down

0 comments on commit 8aca01c

Please sign in to comment.