Nandor Kollar created AVRO-2386:
-----------------------------------
Summary: Generated code doesn't compile
Key: AVRO-2386
URL: https://issues.apache.org/jira/browse/AVRO-2386
Project: Apache Avro
Issue Type: Bug
Components: java
Affects Versions: 1.9.0
Reporter: Nandor Kollar
{code}
{"namespace": "org.apache.avro.codegentest.some",
"type": "record",
"name": "NestedSomeNamespaceRecord",
"doc" : "Test nested types with different namespace than the outer type",
"fields": [
{
"name": "nestedRecord",
"type": {
"namespace": "org.apache.avro.codegentest.other",
"type": "record",
"name": "NestedOtherNamespaceRecord",
"fields": [
{
"name": "someField",
"type": "int"
}
]
}
}]
}
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)