Package org.apache.iceberg.actions
Interface RewriteTablePath.Result
-
- Enclosing interface:
- RewriteTablePath
public static interface RewriteTablePath.ResultThe action result that contains a summary of the execution.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringfileListLocation()Path to a comma-separated list of source and target paths for all files added to the table between startVersion and endVersion, including original data files and metadata files rewritten to staging.java.lang.StringlatestVersion()Name of latest metadata file versionjava.lang.StringstagingLocation()Staging location of rewritten files
-
-
-
Method Detail
-
stagingLocation
java.lang.String stagingLocation()
Staging location of rewritten files
-
fileListLocation
java.lang.String fileListLocation()
Path to a comma-separated list of source and target paths for all files added to the table between startVersion and endVersion, including original data files and metadata files rewritten to staging.
-
latestVersion
java.lang.String latestVersion()
Name of latest metadata file version
-
-