danny0405 commented on issue #11744:
URL: https://github.com/apache/hudi/issues/11744#issuecomment-2276964533
You may got some schema mismatch:
```java
public Object get(String key) {
Field field = schema.getField(key);
if (field == null) {
throw new AvroRuntimeException("Not a valid schema field: " + key);
}
return values[field.pos()];
}
```
--
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]