Package org.apache.iceberg.actions
Interface ExpireSnapshots.Result
-
- Enclosing interface:
- ExpireSnapshots
public static interface ExpireSnapshots.Result
The action result that contains a summary of the execution.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description long
deletedDataFilesCount()
Returns the number of deleted data files.long
deletedEqualityDeleteFilesCount()
Returns the number of deleted equality delete files.long
deletedManifestListsCount()
Returns the number of deleted manifest lists.long
deletedManifestsCount()
Returns the number of deleted manifests.long
deletedPositionDeleteFilesCount()
Returns the number of deleted position delete files.default long
deletedStatisticsFilesCount()
Returns the number of deleted statistics files.
-
-
-
Method Detail
-
deletedDataFilesCount
long deletedDataFilesCount()
Returns the number of deleted data files.
-
deletedEqualityDeleteFilesCount
long deletedEqualityDeleteFilesCount()
Returns the number of deleted equality delete files.
-
deletedPositionDeleteFilesCount
long deletedPositionDeleteFilesCount()
Returns the number of deleted position delete files.
-
deletedManifestsCount
long deletedManifestsCount()
Returns the number of deleted manifests.
-
deletedManifestListsCount
long deletedManifestListsCount()
Returns the number of deleted manifest lists.
-
deletedStatisticsFilesCount
default long deletedStatisticsFilesCount()
Returns the number of deleted statistics files.
-
-