danny0405 commented on code in PR #13964:
URL: https://github.com/apache/hudi/pull/13964#discussion_r2370872970
##########
hudi-common/src/main/java/org/apache/hudi/common/model/SerializableIndexedRecord.java:
##########
@@ -59,17 +60,17 @@ private SerializableIndexedRecord(IndexedRecord record) {
@Override
public void put(int i, Object v) {
- record.put(i, v);
+ getData().put(i, v);
}
@Override
public Object get(int i) {
- return record.get(i);
+ return getData().get(i);
Review Comment:
what about the other getter/setters like `#get(String key)`
--
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]