danny0405 commented on code in PR #13064:
URL: https://github.com/apache/hudi/pull/13064#discussion_r2122387129
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/table/HoodieTable.java:
##########
@@ -607,12 +610,12 @@ public abstract Option<HoodieRestorePlan>
scheduleRestore(HoodieEngineContext co
String
restoreInstantTimestamp,
String
savepointToRestoreTimestamp);
- public void rollbackInflightCompaction(HoodieInstant inflightInstant) {
- rollbackInflightCompaction(inflightInstant, s -> Option.empty());
+ public void rollbackInflightCompaction(HoodieInstant inflightInstant,
Option<TransactionManager> txnManagerOpt) {
+ rollbackInflightCompaction(inflightInstant, s -> Option.empty(),
txnManagerOpt);
}
- public void rollbackInflightLogCompaction(HoodieInstant inflightInstant) {
- rollbackInflightLogCompaction(inflightInstant, s -> Option.empty());
+ public void rollbackInflightLogCompaction(HoodieInstant inflightInstant,
Option<TransactionManager> txnManagerOpt) {
+ rollbackInflightLogCompaction(inflightInstant, s -> Option.empty(),
txnManagerOpt);
Review Comment:
+1
--
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]