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

    https://github.com/apache/spark/pull/7122#discussion_r35416682
  
    --- 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()))
    +  }
    --- End diff --
    
    It would require the other classloader to not have access to that class (so 
wouldn't work with the existing classes). The only way I see would be to 
generate some class at runtime (via asm or whatever) and make it available only 
to the classloader used during serialization. But that sounds kind of overkill 
to me.


---
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