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


##########
hudi-common/src/main/java/org/apache/hudi/common/table/read/PartialUpdateStrategy.java:
##########
@@ -78,8 +81,12 @@ BufferedRecord<T> partialMerge(BufferedRecord<T> newRecord,
       case FILL_DEFAULTS:
         return newRecord;
       case IGNORE_DEFAULTS:
-        return reconcileDefaultValues(
-            newRecord, oldRecord, newSchema, oldSchema, 
keepOldMetadataColumns);
+        try {
+          return reconcileDefaultValues(
+              newRecord, oldRecord, newSchema, oldSchema, 
keepOldMetadataColumns);
+        } catch (IOException e) {
+          throw new HoodieException("Failed to merge two records", e);

Review Comment:
   removed it since it is not needed.



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