You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by kiszk <gi...@git.apache.org> on 2018/04/12 17:30:42 UTC

[GitHub] spark pull request #21045: [WIP][SPARK-23931][SQL] Adds zip function to spar...

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

    https://github.com/apache/spark/pull/21045#discussion_r181162239
  
    --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/collectionOperations.scala ---
    @@ -87,6 +87,62 @@ case class MapKeys(child: Expression)
       override def prettyName: String = "map_keys"
     }
     
    +@ExpressionDescription(
    +  usage = """_FUNC_(a1, a2) - Returns a merged array matching N-th element of first
    +  array with the N-th element of second.""",
    +  examples = """
    +    Examples
    +      > SELECT _FUNC_(array(1, 2, 3), array(2, 3, 4));
    +        [[1, 2], [2, 3], [3, 4]]
    +  """,
    +  since = "2.4.0")
    +case class Zip(left: Expression, right: Expression)
    +  extends BinaryExpression with ExpectsInputTypes {
    +
    +  override def inputTypes: Seq[AbstractDataType] = Seq(ArrayType, ArrayType)
    +
    +  override def dataType: DataType = ArrayType(left.dataType.asInstanceOf[ArrayType].elementType)
    +
    +  override def doGenCode(ctx: CodegenContext, ev: ExprCode): ExprCode = {
    +    nullSafeCodeGen(ctx, ev, (arr1, arr2) => {
    +      val i = ctx.freshName("i")
    +      s"""
    +      for (int $i = 0; $i < $arr1.numElements(); $i ++) {
    +        if ($arr1.isNullAt($i)) {
    +          ${ev.isNull} = true;
    --- End diff --
    
    Is this assignment for each element?


---

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