Dieken opened a new pull request #1304:
URL: https://github.com/apache/avro/pull/1304
… logical type in specific record
SpecificDatumReader.SpecificDatumReader(Schema writer, Schema reader)
-> SpecificData.getForSchema(reader) // It breaks on JDK 9+, fails to load
generated class,
// thus return an empty SpecificData.
SpecificDatumReader.readField()
-> datum = readWithoutConversion(oldDatum, field.schema(), in); //
conversion is null for union field
-> GenericDatumReader.read(Object old, Schema expected, ResolvingDecoder
in)
-> Conversion<?> conversion = getData().getConversionFor(logicalType);
// return null wrongly
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]