nsivabalan commented on code in PR #13236:
URL: https://github.com/apache/hudi/pull/13236#discussion_r2071281093
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/WriteStatus.java:
##########
@@ -55,12 +55,14 @@ public class WriteStatus implements Serializable {
private static final long serialVersionUID = 1L;
private static final long RANDOM_SEED = 9038412832L;
- private final HashMap<HoodieKey, Throwable> errors = new HashMap<>();
+ protected HashMap<HoodieKey, Throwable> errors = new HashMap<>();
private final List<HoodieRecordDelegate> writtenRecordDelegates = new
ArrayList<>();
- private final List<Pair<HoodieRecordDelegate, Throwable>> failedRecords =
new ArrayList<>();
+ protected List<Pair<HoodieRecordDelegate, Throwable>> failedRecords = new
ArrayList<>();
+ // true if this WriteStatus refers to a write happening in metadata table.
+ private boolean isMetadataTable;
Review Comment:
isMetadataTable in WriteStatus
--
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]