diff --git a/docs/src/main/sphinx/functions/array.md b/docs/src/main/sphinx/functions/array.md index 0b4252284d2f..bb402689cfd5 100644 --- a/docs/src/main/sphinx/functions/array.md +++ b/docs/src/main/sphinx/functions/array.md @@ -77,7 +77,14 @@ SELECT array_histogram(ARRAY[NULL, NULL]); ``` ::: +:::{function} array_join(x, delimiter) -> varchar +Concatenates the elements of the given array using the delimiter. +Null elements are omitted in the result. +::: + :::{function} array_join(x, delimiter, null_replacement) -> varchar +:noindex: true + Concatenates the elements of the given array using the delimiter and an optional string to replace nulls. :::