Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/18075#discussion_r122122817
  
    --- Diff: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/codegen/GeneratedProjectionSuite.scala
 ---
    @@ -62,13 +62,63 @@ class GeneratedProjectionSuite extends SparkFunSuite {
         val result = safeProj(unsafe)
         // Can't compare GenericInternalRow with JoinedRow directly
         (0 until N).foreach { i =>
    -      val r = i + 1
    -      val s = UTF8String.fromString((i + 1).toString)
    -      assert(r === result.getInt(i + 2))
    +      val s = UTF8String.fromString(i.toString)
    +      assert(i === result.getInt(i + 2))
           assert(s === result.getUTF8String(i + 2 + N))
    -      assert(r === result.getStruct(0, N * 2).getInt(i))
    +      assert(i === result.getStruct(0, N * 2).getInt(i))
           assert(s === result.getStruct(0, N * 2).getUTF8String(i + N))
    -      assert(r === result.getStruct(1, N * 2).getInt(i))
    +      assert(i === result.getStruct(1, N * 2).getInt(i))
    +      assert(s === result.getStruct(1, N * 2).getUTF8String(i + N))
    +    }
    +
    +    // test generated MutableProjection
    +    val exprs = nestedSchema.fields.zipWithIndex.map { case (f, i) =>
    +      BoundReference(i, f.dataType, true)
    +    }
    +    val mutableProj = GenerateMutableProjection.generate(exprs)
    +    val row1 = mutableProj(result)
    +    assert(result === row1)
    +    val row2 = mutableProj(result)
    +    assert(result === row2)
    +  }
    +
    +  test("SPARK-18016: generated projections on wider table requiring 
class-splitting") {
    +    val N = 4000
    +    val wideRow1 = new GenericInternalRow((0 until N).toArray[Any])
    --- End diff --
    
    ditto


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to