Expand description
Streams the file-action diff between two table versions. See
IncrementalScanBuilder for the entry point.
Structsยง
- Incremental
Listing - Eager output of
IncrementalScanStream::into_listing: the buffered Add batches plus the summary (no cross-snapshot classification). - Incremental
Listing Against Base - Eager output of
IncrementalScanStream::into_listing_against_base_iter(or its closure variant): the buffered Add batches plus the classified summary. - Incremental
Scan Builder - Builder for an incremental scan over
(base_version, target_version]. Construct viacrate::Snapshot::incremental_scan_builderand drive withIncrementalScanBuilder::build. - Incremental
Scan Stream - Streaming output of an incremental scan over
(base_version, target_version]. Yields live Add batches asFilteredEngineDatain newest-first order viaIterator::next; callinto_summaryorinto_listingto terminate and recover the live file-key sets. - Incremental
Scan Summary - Live file-key sets without cross-snapshot classification, returned by
IncrementalScanStream::into_summary. - Incremental
Scan Summary Against Base - Cross-snapshot-classified file-key sets, returned by
IncrementalScanStream::into_summary_against_base_iter(or its closure variant).