Closed cmouli84 closed 3 years ago
The issue appears to be related: https://github.com/actgardner/gogen-avro/issues/13#issuecomment-278990580
Hi @cmouli84, can you confirm if this issue still exists in the latest release (10.1.0)?
Thanks @actgardner Issue is resolved with latest release (10.1.0)
Hi
We are running into an issue due to same enum name present in different namespaces. Find below the sample schema to illustrate the issue we are running into
In the above schema,
SomeEnum
is present under namespacescom.company.team
andcom.company.shared
and the enum in those namespaces allows for different set of values. But the generated go structs refer to same enum fromcom.company.shared
.Command used to generate the go struct
Is it possible to generate namespaced enums similar to go struct when
-namespaced-names=full
is set?Thanks