rdblue commented on a change in pull request #4071:
URL: https://github.com/apache/iceberg/pull/4071#discussion_r812540263



##########
File path: core/src/main/java/org/apache/iceberg/SnapshotManager.java
##########
@@ -54,6 +54,48 @@ public ManageSnapshots rollbackTo(long snapshotId) {
     return this;
   }
 
+  @Override
+  public ManageSnapshots createBranch(String name, long snapshotId) {
+    transaction.table().manageSnapshots().createBranch(name, snapshotId);

Review comment:
       `manageSnapshots` isn't implemented in transaction tables. I think you 
need to add package-private operations like `CherrypickOperation` from the last 
PR.




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



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to