-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrect results with parquet page filtering
Fixes an off-by-one bug in the nested data case, which was causing failures like "Loaded block positions count (511) doesn't match lazy block positions count (512)" This was handled by the changes around `targetRow` calculations. Fixes another issue around counting of consumed rows during `seek`. This was causing wrong results when certain blocks are skipped due to lazy loading. This was handled by the changes in `seek` and `processValues` functions.
- Loading branch information
1 parent
22272e2
commit 2e60184
Showing
3 changed files
with
68 additions
and
27 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
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