Skip to content

Commit

Permalink
Update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
acvictor committed Apr 24, 2024
1 parent 516d41d commit dd348ff
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions velox/docs/functions/spark/array.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ Array Functions
SELECT array_repeat(100, 0); -- []
SELECT array_repeat(100, -1); -- []

.. spark:function:: array_size(array(E)) -> integer
Returns the size of the array. ::
SELECT array_size(array(1, 2, 3)); -- 3
.. spark:function:: array_sort(array(E)) -> array(E)
Returns an array which has the sorted order of the input array(E). The elements of array(E) must
Expand Down

0 comments on commit dd348ff

Please sign in to comment.