Github user twalthr commented on a diff in the pull request:
https://github.com/apache/flink/pull/5762#discussion_r177059068
--- 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 --
Could you add a more complex Avro type? I think we should test all
available Avro types. Esp. maps and arrays and maybe different
`SpecificRecords` and `GenericRecords`.
---