You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have come up against the following problem. If a record has 2 fixed types in different namespaces but same schema name then the code generated does not compile.
Here is an example avro schema dmonstrating the problem
We have come up against the following problem. If a record has 2 fixed types in different namespaces but same schema name then the code generated does not compile.
Here is an example avro schema dmonstrating the problem
Using these typical test settings
This generates 3 source files
target/generated-sources/specific/fixedtwo/FixedTwo.scala
target/generated-sources/specific/fixedtwo/one/fixed.scala
target/generated-sources/specific/fixedtwo/two/fixed.scala
The fixed classes are in different packages so having the same simple class name is not a problem
However, the
FixedTwo
record class imports bothfixed
classesThis causes a compilation error as the name
fixed
is ambiguous.The text was updated successfully, but these errors were encountered: