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

    https://github.com/apache/spark/pull/21037#discussion_r181833370
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/collectionOperations.scala
 ---
    @@ -287,3 +287,60 @@ case class ArrayContains(left: Expression, right: 
Expression)
     
       override def prettyName: String = "array_contains"
     }
    +
    +/**
    + * Returns the position of the first occurrence of element in the given 
array as long.
    + * Returns 0 if substr could not be found in str. Returns null if either 
of the arguments are null
    + *
    + * NOTE: that this is not zero based, but 1-based index. The first 
character in str has index 1.
    + */
    +@ExpressionDescription(
    +  usage = """
    +    _FUNC_(array, element) - Returns the (1-based) index of the first 
element of the array as long.
    +  """,
    +  examples = """
    +    Examples:
    +      > SELECT _FUNC_(array(3, 2, 1), 1);
    +       3
    +  """,
    +  since = "2.4.0")
    +case class ArrayPosition(left: Expression, right: Expression)
    +  extends BinaryExpression with ImplicitCastInputTypes {
    +
    +  override def dataType: DataType = LongType
    +  override def inputTypes: Seq[AbstractDataType] =
    +    Seq(ArrayType, left.dataType.asInstanceOf[ArrayType].elementType)
    +
    +  override def nullable: Boolean = {
    +    left.nullable || right.nullable || 
left.dataType.asInstanceOf[ArrayType].containsNull
    +  }
    +
    +  override def nullSafeEval(arr: Any, value: Any): Any = {
    +    arr.asInstanceOf[ArrayData].foreach(right.dataType, (i, v) =>
    +      if (v == value) {
    +        return (i + 1).toLong
    +      }
    +    )
    +    0L
    +  }
    +
    +  override def prettyName: String = "array_position"
    +
    +  override def doGenCode(ctx: CodegenContext, ev: ExprCode): ExprCode = {
    +    nullSafeCodeGen(ctx, ev, (arr, value) => {
    +      val pos = ctx.freshName("arrayPosition")
    +      val i = ctx.freshName("i")
    +      val getValue = CodeGenerator.getValue(arr, right.dataType, i)
    +      s"""
    +         |int ${pos} = 0;
    +         |for (int $i = 0; $i < $arr.numElements(); $i ++) {
    +         |  if (${ctx.genEqual(right.dataType, value, getValue)}) {
    --- End diff --
    
    I totally agree with you. I added one test case for this.


---

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

Reply via email to