Open
Description
Is your feature request related to a problem or challenge?
Related to #15512
I think this is a first step towards HashJoinExec pushdown. I think we should model that as col >= hash_table_min AND col <= hash_table_max AND hash_table_bloom(col)
. The simple bounds should help with stats pruning, etc.
I believe we could also use this to accelerate IN <LIST>
and re-use the code for bloom filter pruning in parquet scans (just for code reuse)