Github user florianschmidt1994 commented on a diff in the pull request:
https://github.com/apache/flink/pull/5762#discussion_r178758895
--- 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 can do that. The initial idea was to add this e2e test for a specific
failure case that got fixed in 1.4 something, but there shouldn't be a downside
to extending it with more complex fields, should it?
---