Is there an existing issue for the same feature request?
Is your feature request related to a problem?
Describe the feature you'd like
For 'point query' like: SELECT a FROM t1 WHERE a.col1 = 0, minmax and inverted index of the column are not effective to filter out the unnecessary block/segment. But, bloomfilter will be much more suitable for these kind of workload.
I suppose we can use counting bloomfilter, which is much better than naive bloomfilter to accelerate the 'point query'.
Describe implementation you've considered
No response
Documentation, adoption, use case
No response
Additional information
No response
Is there an existing issue for the same feature request?
Is your feature request related to a problem?
Describe the feature you'd like
For 'point query' like: SELECT a FROM t1 WHERE a.col1 = 0, minmax and inverted index of the column are not effective to filter out the unnecessary block/segment. But, bloomfilter will be much more suitable for these kind of workload.
I suppose we can use counting bloomfilter, which is much better than naive bloomfilter to accelerate the 'point query'.
Describe implementation you've considered
No response
Documentation, adoption, use case
No response
Additional information
No response