-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Our builds are actually broken due to a dependency on `mod engine` in `scan/mod.rs` (which only exists when one of the engine feature-flags is enabled. as soon as all are off, it fails to build). This fixes the issue by moving the `parquet_stats_skipping` module out of engine code and into `expressions` module. This was trivial since it actually doesn't depend on any engine code. We pull `parquet_stats_skipping` into `scan/mod.rs` in order to `impl ParquetStatsProvider for NoStats`. Now instead of having this rely on engine code, it's moved to the `predicates` module (which is always included) Note that I have a new test in CI that will catch this failure in the future: #601
- Loading branch information
1 parent
b6558d0
commit 37307f5
Showing
6 changed files
with
22 additions
and
35 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
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