-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Parquet predicate pushdown for lit(_) !=
#19246
fix: Parquet predicate pushdown for lit(_) !=
#19246
Conversation
@@ -354,7 +354,7 @@ mod stats { | |||
use ChunkCompareIneq as C; | |||
match op { | |||
Operator::Eq => apply_operator_stats_eq(min_max, literal), | |||
Operator::NotEq => apply_operator_stats_eq(min_max, literal), | |||
Operator::NotEq => apply_operator_stats_neq(min_max, literal), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the actual fix. The rest are all drive-by's.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
auch.
lit(_) !=
.lit(_) !=
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #19246 +/- ##
==========================================
+ Coverage 79.68% 80.02% +0.34%
==========================================
Files 1532 1528 -4
Lines 209211 209570 +359
Branches 2416 2415 -1
==========================================
+ Hits 166710 167716 +1006
+ Misses 41953 41306 -647
Partials 548 548 ☔ View full report in Codecov by Sentry. |
Fixes #19238.