-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: do not panic when performing a pushdown scan on a multi-data-fil…
…e fragment (#1873) The normal scan algorithm is: ``` open fragment reader with projected schema for batch in batches: scan batch ``` The pushdown algorithm is: ``` open fragment with full schema for batch, simplified_projection in filter(batches): projected scan batch(simplified_projection) ``` This means that the data files that need to be read could change from batch to batch. This was not previously being accounted for and now it is. Closes #1871
- Loading branch information
1 parent
6edcad7
commit e733bae
Showing
2 changed files
with
60 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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