We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Writer schema validation is currently more strict than mandated by the Avro spec (https://avro.apache.org/docs/1.9.1/spec.html#Schema+Resolution), meaning schema evolutions that should be allowed are not.
int
long
name
fullname
We may not need to handle schema name matching ourselves at all, since it's already done by the underlying Avro library.
The text was updated successfully, but these errors were encountered:
Moved alias support to #142.
Sorry, something went wrong.
No branches or pull requests
Writer schema validation is currently more strict than mandated by the Avro spec (https://avro.apache.org/docs/1.9.1/spec.html#Schema+Resolution), meaning schema evolutions that should be allowed are not.
Support promotion between different schema types, e.g. fromint
writer schema tolong
reader schema (Schema resolution: allow type promotion #134)Match named schema based onname
rather thanfullname
(Remove name validation from codecs, match unions based on name rather than fullname #136)We may not need to handle schema name matching ourselves at all, since it's already done by the underlying Avro library.
The text was updated successfully, but these errors were encountered: