Package org.apache.iceberg
Interface DeleteFile
-
- All Superinterfaces:
ContentFile<DeleteFile>
- All Known Implementing Classes:
SparkDeleteFile
public interface DeleteFile extends ContentFile<DeleteFile>
Interface for delete files listed in a table delete manifest.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.List<java.lang.Long>
splitOffsets()
Returns list of recommended split locations, if applicable, null otherwise.-
Methods inherited from interface org.apache.iceberg.ContentFile
columnSizes, content, copy, copy, copyWithoutStats, copyWithStats, dataSequenceNumber, equalityFieldIds, fileSequenceNumber, fileSizeInBytes, format, keyMetadata, location, lowerBounds, manifestLocation, nanValueCounts, nullValueCounts, partition, path, pos, recordCount, sortOrderId, specId, upperBounds, valueCounts
-
-
-
-
Method Detail
-
splitOffsets
default java.util.List<java.lang.Long> splitOffsets()
Description copied from interface:ContentFile
Returns list of recommended split locations, if applicable, null otherwise.When available, this information is used for planning scan tasks whose boundaries are determined by these offsets. The returned list must be sorted in ascending order.
- Specified by:
splitOffsets
in interfaceContentFile<DeleteFile>
- Returns:
- List of recommended split locations, if applicable, null otherwise. When available, this information is used for planning scan tasks whose boundaries are determined by these offsets. The returned list must be sorted in ascending order.
-
-