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

    https://github.com/apache/spark/pull/20756#discussion_r177302386
  
    --- Diff: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/ObjectExpressionsSuite.scala
 ---
    @@ -68,6 +68,23 @@ class ObjectExpressionsSuite extends SparkFunSuite with 
ExpressionEvalHelper {
           mapEncoder.serializer.head, mapExpected, mapInputRow)
       }
     
    +  test("SPARK-23593: InitializeJavaBean should support interpreted 
execution") {
    +    val list = new java.util.LinkedList[Int]()
    +    list.add(1)
    +
    +    val initializeBean = InitializeJavaBean(Literal.fromObject(new 
java.util.LinkedList[Int]),
    +      Map("add" -> Literal(1)))
    +    checkEvaluation(initializeBean, list, InternalRow.fromSeq(Seq()))
    +
    +    val initializeWithNonexistingMethod = InitializeJavaBean(
    +      Literal.fromObject(new java.util.LinkedList[Int]),
    --- End diff --
    
    Added below.
    
    Note that because for generic method, its parameter type is `Object`, so 
for `LinkedList[Int]`, it doesn't make sense to test it with something like 
`Map("add" -> Literal("a string"))`



---

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

Reply via email to