JunRuiLee commented on code in PR #7882:
URL: https://github.com/apache/paimon/pull/7882#discussion_r3273303895
##########
paimon-core/src/main/java/org/apache/paimon/catalog/Catalog.java:
##########
@@ -901,6 +901,19 @@ void renameBranch(Identifier identifier, String
fromBranch, String toBranch)
*/
void fastForward(Identifier identifier, String branch) throws
BranchNotExistException;
+ /**
+ * Merge source branch into target branch.
+ *
+ * @param identifier path of the table, cannot be system or branch name.
+ * @param sourceBranch the source branch name
+ * @param targetBranch the target branch name
+ * @throws BranchNotExistException if the source or target branch doesn't
exist
+ * @throws UnsupportedOperationException if the catalog does not {@link
+ * #supportsVersionManagement()}
+ */
+ void mergeBranch(Identifier identifier, String sourceBranch, String
targetBranch)
Review Comment:
fixed
--
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]