Package org.apache.iceberg
Interface DeleteFile
-
- All Superinterfaces:
ContentFile<DeleteFile>
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()
-
Methods inherited from interface org.apache.iceberg.ContentFile
columnSizes, content, copy, copyWithoutStats, fileSizeInBytes, format, keyMetadata, lowerBounds, nullValueCounts, partition, path, recordCount, upperBounds, valueCounts
-
-
-
-
Method Detail
-
splitOffsets
default java.util.List<java.lang.Long> splitOffsets()
- 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.
-
-