We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e435bce commit 05e94ccCopy full SHA for 05e94cc
core/src/main/java/org/apache/iceberg/TableMetadata.java
@@ -501,10 +501,6 @@ public TableMetadata replaceCurrentSnapshot(Snapshot snapshot) {
501
return new Builder(this).setCurrentSnapshot(snapshot).build();
502
}
503
504
- public TableMetadata replaceCurrentSnapshot(long snapshotId) {
505
- return new Builder(this).setCurrentSnapshot(snapshotId).build();
506
- }
507
-
508
public TableMetadata removeSnapshotsIf(Predicate<Snapshot> removeIf) {
509
List<Snapshot> toRemove = snapshots.stream().filter(removeIf).collect(Collectors.toList());
510
return new Builder(this).removeSnapshots(toRemove).build();
0 commit comments