Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21802#discussion_r205704109
  
    --- Diff: python/pyspark/sql/functions.py ---
    @@ -2382,6 +2382,20 @@ def array_sort(col):
         return Column(sc._jvm.functions.array_sort(_to_java_column(col)))
     
     
    +@since(2.4)
    +def shuffle(col):
    +    """
    +    Collection function: Generates a random permutation of the given array.
    +
    +    .. note:: The function is non-deterministic because its results 
depends on order of rows which
    +        may be non-deterministic after a shuffle.
    +
    +    :param col: name of column or expression
    --- End diff --
    
    Python doctest looks missing.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to