kennknowles opened a new issue, #19163:
URL: https://github.com/apache/beam/issues/19163

   The following code throws an exception:
   
   ```
   
   import org.apache.beam.sdk.coders._
   import org.apache.beam.sdk.schemas.Schema
   
   val schema =
     
      Schema
           .builder()
           .addInt32Field("c1")
           .addStringField("c2")
          
   .addDoubleField("c3")
           .build()
   
   val coder = RowCoder.of(schema)
   org.apache.beam.sdk.util.SerializableUtils.ensureSerializable(coder)
   
   ```
   
   
   ```
   
   java.lang.IllegalStateException: Coder not equal to original after 
serialization, indicating that the
   Coder may not implement serialization correctly.  Before: 
org.apache.beam.sdk.coders.RowCoder@1323050e,
   after: org.apache.beam.sdk.coders.RowCoder@4c03150a
   
   ```
   
   
   Imported from Jira 
[BEAM-5645](https://issues.apache.org/jira/browse/BEAM-5645). Original Jira may 
contain additional context.
   Reported by: jto.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to