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

    https://github.com/apache/spark/pull/21069#discussion_r191955459
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/collectionOperations.scala
 ---
    @@ -1882,3 +1882,117 @@ case class ArrayRepeat(left: Expression, right: 
Expression)
       }
     
     }
    +
    +/**
    + * Remove all elements that equal to element from the given array
    + */
    +@ExpressionDescription(
    +  usage = "_FUNC_(array, element) - Remove all elements that equal to 
element from array.",
    +  examples = """
    +    Examples:
    +      > SELECT _FUNC_(array(1, 2, 3, null, 3), 3);
    +       [1,2,null]
    +  """, since = "2.4.0")
    +case class ArrayRemove(left: Expression, right: Expression)
    +  extends BinaryExpression with ImplicitCastInputTypes {
    +
    +  override def dataType: DataType = left.dataType
    +
    +  override def inputTypes: Seq[AbstractDataType] =
    +    Seq(ArrayType, left.dataType.asInstanceOf[ArrayType].elementType)
    --- End diff --
    
    This will cause `ClassCastException`. See #21401.
    Also could you add tests similar to tests added in #21401?


---

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

Reply via email to