Github user florianschmidt1994 commented on a diff in the pull request: https://github.com/apache/flink/pull/5762#discussion_r178828282 --- Diff: flink-end-to-end-tests/flink-avro-classloading-test/src/main/avro/user.avsc --- @@ -0,0 +1,9 @@ +{ + "type": "record", + "namespace": "org.apache.flink.tests.streaming", + "name": "User", + "fields": [ + { "name": "first", "type": "string" }, + { "name": "last", "type": "string" } --- End diff -- I added some more complex examples and verified that the initial test case still fails on 1.3.X and works on 1.4.X as expected
---