frevib commented on code in PR #3614:
URL: https://github.com/apache/avro/pull/3614#discussion_r2679489911


##########
lang/java/gradle-plugin/src/test/avro/multipleSchemas/ApplicationEvent.avsc:
##########
@@ -0,0 +1,44 @@
+{
+  "namespace": "model",
+  "type": "record",
+  "doc": "",
+  "name": "ApplicationEvent",
+  "fields": [
+    {
+      "name": "applicationId",
+      "type": "string",
+      "doc": "Application ID"
+    },
+    {
+      "name": "status",
+      "type": "string",
+      "doc": "Application Status"
+    },
+    {
+      "name": "documents",
+      "type": ["null", {
+        "type": "array",
+        "items": "model.DocumentInfo"
+      }],
+      "doc": "",
+      "default": null
+    },
+    {
+      "name": "response",
+      "type": {
+        "namespace": "model",
+        "type": "record",
+        "doc": "",
+        "name": "MyResponse",

Review Comment:
   Can you clarify? I think the idea is that if there exists two identical 
records in different schema files, it should compile.



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