Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.9.0
Description
The following IDL will fail complaining that 2 same type is declared twice in the union:
@namespace("org.apache.avro.gen")
protocol UnionFwd {
record TestRecord {
union {SR1, SR2} unionField;
}
record SR1 {
string field;
}
record SR2 {
string field;
}
}
the fix for this can be pretty simple:
Attachments
Issue Links
- links to