Package org.apache.iceberg.actions
Interface RewritePositionDeleteFiles.Result
- Enclosing interface:
- RewritePositionDeleteFiles
public static interface RewritePositionDeleteFiles.Result
The action result that contains a summary of the execution.
-
Method Summary
Modifier and TypeMethodDescriptiondefault long
Returns the number of bytes of newly added position delete filesdefault int
Returns the count of the added position delete files.default long
Returns the number of bytes of position delete files that have been rewrittendefault int
Returns the count of the position delete files that have been rewritten.
-
Method Details
-
rewriteResults
List<RewritePositionDeleteFiles.FileGroupRewriteResult> rewriteResults() -
rewrittenDeleteFilesCount
default int rewrittenDeleteFilesCount()Returns the count of the position delete files that have been rewritten. -
addedDeleteFilesCount
default int addedDeleteFilesCount()Returns the count of the added position delete files. -
rewrittenBytesCount
default long rewrittenBytesCount()Returns the number of bytes of position delete files that have been rewritten -
addedBytesCount
default long addedBytesCount()Returns the number of bytes of newly added position delete files
-