Package org.apache.iceberg
Interface PartitionScanTask
-
- All Superinterfaces:
ScanTask
,java.io.Serializable
- All Known Subinterfaces:
AddedRowsScanTask
,ContentScanTask<F>
,DataTask
,DeletedDataFileScanTask
,DeletedRowsScanTask
,FileScanTask
,PositionDeletesScanTask
- All Known Implementing Classes:
BaseFileScanTask
public interface PartitionScanTask extends ScanTask
A scan task for data within a particular partition
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StructLike
partition()
Returns the value of the partition for this scan taskPartitionSpec
spec()
Returns the spec of the partition for this scan task-
Methods inherited from interface org.apache.iceberg.ScanTask
asCombinedScanTask, asDataTask, asFileScanTask, estimatedRowsCount, filesCount, isDataTask, isFileScanTask, sizeBytes
-
-
-
-
Method Detail
-
spec
PartitionSpec spec()
Returns the spec of the partition for this scan task
-
partition
StructLike partition()
Returns the value of the partition for this scan task
-
-