FasterXML / FasterXML/jackson-dataformats-binary
(avro) Compatibility issue because Schema validation error
- Langage dominant
- Java
- Étoiles
- 347
- Forks
- 156
- Merge moyen
- 3 j 3 h
- PR mergées (30 j)
- 22
Description
In avro 1.9.2 -
```
public Object get(String key) {
Field field = this.schema.getField(key);
return field == null ? null : this.values[field.pos()];
}
```
getString method was handling null value and returning null to caller, but in 1.10.X version this function throwing exception org.apache.avro.AvroRuntimeException: Not a valid schema field:. This causing issue as code was not sensitive to schema earlier we treat common reader for all different schema but its failing if we upgrade to latest version of Jar.
Please take a note.
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.