Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zhli1142015 committed Jan 2, 2025
1 parent 3ba56a6 commit 0a2c884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion velox/docs/functions/spark/array.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Array Functions
Concatenates the elements of the given array using the ``delimiter`` and an optional string to replace nulls.
If no value is set for ``nullReplacement``, any null value is filtered. ::

SELECT array_join(array('1', '2', '3'), ','') -- '1,2,3'
SELECT array_join(array('1', '2', '3'), ',') -- '1,2,3'
SELECT array_join(array('1', NULL, '2'), ',') -- '1,2'
SELECT array_join(array('1', NULL, '2'), ',', '0') -- '1,0,2'

Expand Down

0 comments on commit 0a2c884

Please sign in to comment.