You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: do not panic when performing a pushdown scan on a multi-data-file 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
0 commit comments