FasterXML / FasterXML/jackson-dataformats-binary
(avro) Compatibility issue because Schema validation error
未關閉
avro
- 主要語言
- Java
- 星號
- 347
- 分支
- 156
- 平均合併
- 3 天 3 小時
- 30 天內合併 PR
- 22
描述
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.
貢獻指南
這個儲存庫沒有索引到貢獻指南
評估
這個 Issue 還沒有評估資料。