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

    https://github.com/apache/spark/pull/7122#discussion_r35414891
  
    --- Diff: 
core/src/test/scala/org/apache/spark/serializer/JavaSerializerSuite.scala ---
    @@ -25,4 +25,18 @@ class JavaSerializerSuite extends SparkFunSuite {
         val instance = serializer.newInstance()
         instance.deserialize[JavaSerializer](instance.serialize(serializer))
       }
    +
    +  test("Deserialize object containing a primitive Class as attribute") {
    +    val serializer = new JavaSerializer(new SparkConf())
    +    val instance = serializer.newInstance()
    +    instance.deserialize[JavaSerializer](instance.serialize(new 
ContainsPrimitiveClass()))
    +  }
    +}
    +
    +private class ContainsPrimitiveClass extends Serializable {
    +  val intClass = classOf[Int]
    +  val longClass = classOf[Long]
    +  val charClass = classOf[Char]
    +  val doubleClass = classOf[Double]
    +  val booleanClass = classOf[Boolean]
    --- End diff --
    
    might as well throw in all primitive types here


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to