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
Is your feature request related to a problem or challenge?
I am trying to use the interval analysis when applying bloom filters (#7821) to parquet files (as a first step towards eventually using them for all predicate pruning).
However, at the moment interval analysis does not support OR, so expressions like false OR false can not be simplfied
Is your feature request related to a problem or challenge?
I am trying to use the interval analysis when applying bloom filters (#7821) to parquet files (as a first step towards eventually using them for all predicate pruning).
However, at the moment interval analysis does not support
OR
, so expressions likefalse OR false
can not be simplfiedDescribe the solution you'd like
Implement
Operator::OR
inapply_operator
:https://github.com/apache/arrow-datafusion/blob/608ce37f76627b7692fe9d5ca73df8efe88d75b4/datafusion/physical-expr/src/intervals/interval_aritmetic.rs#L759
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: