Package org.apache.iceberg
Interface ChangelogScanTask
- 
- All Superinterfaces:
- ScanTask,- java.io.Serializable
 - All Known Subinterfaces:
- AddedRowsScanTask,- DeletedDataFileScanTask,- DeletedRowsScanTask
 
 public interface ChangelogScanTask extends ScanTask A changelog scan task.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intchangeOrdinal()Returns the ordinal of changes produced by this task.longcommitSnapshotId()Returns the snapshot ID in which the changes were committed.ChangelogOperationoperation()Returns the type of changes produced by this task (i.e.- 
Methods inherited from interface org.apache.iceberg.ScanTaskasCombinedScanTask, asDataTask, asFileScanTask, filesCount, isDataTask, isFileScanTask, sizeBytes
 
- 
 
- 
- 
- 
Method Detail- 
operationChangelogOperation operation() Returns the type of changes produced by this task (i.e. insert/delete).
 - 
changeOrdinalint changeOrdinal() Returns the ordinal of changes produced by this task. This number indicates the order in which changes produced by this scan must be applied. Operations with a lower ordinal must be applied first.
 - 
commitSnapshotIdlong commitSnapshotId() Returns the snapshot ID in which the changes were committed.
 
- 
 
-