elodina / go-avro

Apache Avro for Golang
http://elodina.github.io/go-avro/
Apache License 2.0
128 stars 55 forks source link

Respect namespace for the field #93

Closed dejan closed 4 years ago

dejan commented 6 years ago

As described in spec (1.8.1) individual fields (record, enum and fixed) can also have its own namespace effectively overriding the enclosing namespace.

In record, enum and fixed definitions, the fullname is determined in one of the following ways:

  • A name and namespace are both specified. For example, one might use "name": "X", "namespace": "org.foo" to indicate the fullname org.foo.X. ...