JingsongLi commented on code in PR #6896:
URL: https://github.com/apache/paimon/pull/6896#discussion_r3293764957


##########
paimon-core/src/main/java/org/apache/paimon/utils/BranchManager.java:
##########
@@ -42,6 +42,16 @@ public interface BranchManager {
 
     List<String> branches();
 
+    /**
+     * Get all branches that were created based on the given tag.
+     *
+     * @param tagName the name of the tag to check
+     * @return list of branch names that reference the given tag
+     */
+    default List<String> branchesCreatedFromTag(String tagName) {
+        return java.util.Collections.emptyList();

Review Comment:
   Please also fix this to `CatalogBranchManager`.



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