feat: support existing changelog incremental reads#509
Open
Pandas886 wants to merge 2 commits into
Open
Conversation
This was referenced Jul 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Linked issue: close #504
Depends on: #508 (Delta/Auto). Please review that one first — this branch is stacked on top of it, so the diff against
maincurrently includes both commits.This adds reading of already-written changelog files (
changelog_manifest_list) plus anAuditLogTableview that exposesrowkindas the first column.Important: this does not generate lookup/compact changelogs. If a snapshot has no changelog list, we just skip it / return empty for that snapshot rather than inventing files.
Brief change log
(start, end]TableScan::plan_snapshot_changelogreusing the existing split pipelineAuditLogTablewrapper:rowkindfirst, optional_SEQUENCE_NUMBERTableRead::to_audit_log_arrowfor Delta (all+I) and Changelog (from_VALUE_KIND)nonechangelog-producer=inputfixtures and multi-snapshot rangesDiff mode is still unsupported here on purpose.
Tests
API and Format
AuditLogTable+ Changelog path on the incremental APIDocumentation
No standalone docs in this PR (SQL docs come with the DataFusion follow-up).
Review tip
If you're looking at the full branch vs
main, the interesting commit for this PR is the top one (feat: support existing changelog incremental reads). The parent is #508.