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

    https://github.com/apache/spark/pull/21802#discussion_r205703459
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/collectionOperations.scala
 ---
    @@ -1184,6 +1184,110 @@ case class ArraySort(child: Expression) extends 
UnaryExpression with ArraySortLi
       override def prettyName: String = "array_sort"
     }
     
    +/**
    + * Returns a random permutation of the given array.
    + */
    +@ExpressionDescription(
    +  usage = "_FUNC_(array) - Returns a random permutation of the given 
array.",
    +  examples = """
    +    Examples:
    +      > SELECT _FUNC_(array(1, 20, 3, 5));
    +       [3, 1, 5, 20]
    +      > SELECT _FUNC_(array(1, 20, null, 3));
    +       [20, null, 3, 1]
    +  """, since = "2.4.0")
    --- End diff --
    
    We could add `note` here too.


---

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

Reply via email to