Package org.apache.iceberg
Class SetStatistics
java.lang.Object
org.apache.iceberg.SetStatistics
- All Implemented Interfaces:
PendingUpdate<List<StatisticsFile>>
,UpdateStatistics
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionapply()
Apply the pending changes and return the uncommitted changes for validation.void
commit()
Apply the pending changes and commit.removeStatistics
(long snapshotId) Remove the table's statistics file for given snapshot.setStatistics
(long snapshotId, StatisticsFile statisticsFile) Set the table's statistics file for given snapshot, replacing the previous statistics file for the snapshot if any exists.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.iceberg.PendingUpdate
updateEvent
-
Constructor Details
-
SetStatistics
-
-
Method Details
-
setStatistics
Description copied from interface:UpdateStatistics
Set the table's statistics file for given snapshot, replacing the previous statistics file for the snapshot if any exists.- Specified by:
setStatistics
in interfaceUpdateStatistics
- Returns:
- this for method chaining
-
removeStatistics
Description copied from interface:UpdateStatistics
Remove the table's statistics file for given snapshot.- Specified by:
removeStatistics
in interfaceUpdateStatistics
- Returns:
- this for method chaining
-
apply
Description copied from interface:PendingUpdate
Apply the pending changes and return the uncommitted changes for validation.This does not result in a permanent update.
- Specified by:
apply
in interfacePendingUpdate<List<StatisticsFile>>
- Returns:
- the uncommitted changes that would be committed by calling
PendingUpdate.commit()
-
commit
public void commit()Description copied from interface:PendingUpdate
Apply the pending changes and commit.Changes are committed by calling the underlying table's commit method.
Once the commit is successful, the updated table will be refreshed.
- Specified by:
commit
in interfacePendingUpdate<List<StatisticsFile>>
-