linliu-code commented on code in PR #13498:
URL: https://github.com/apache/hudi/pull/13498#discussion_r2175000274


##########
hudi-client/hudi-spark-client/src/main/scala/org/apache/hudi/BaseSparkInternalRowReaderContext.java:
##########
@@ -91,6 +92,17 @@ public Object getValue(InternalRow row, Schema schema, 
String fieldName) {
     return getFieldValueFromInternalRow(row, schema, fieldName);
   }
 
+  @Override
+  public void setValue(InternalRow row, Schema schema, String fieldName, 
Object value) {
+    Schema.Field field = schema.getField(fieldName);

Review Comment:
   Based on the payload implementation, like `PartialUpdateAvroPayload` or 
`OverwriteNonDefaultsWithLatestAvroPayload`, it seems no nested columns are 
considered. Should we worry about nested columns here?



-- 
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]

Reply via email to