We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 448108b commit f748060Copy full SHA for f748060
src/query/storages/fuse/src/pruning/bloom_pruner.rs
@@ -113,6 +113,14 @@ pub fn new_bloom_filter_pruner(
113
schema: &DataSchemaRef,
114
dal: Operator,
115
) -> Result<Arc<dyn BloomFilterPruner + Send + Sync>> {
116
+ // due to issue
117
+ // https://github.com/datafuselabs/databend/issues/7780
118
+ // bloom filter is disabled, just return a NonPruner unconditionally
119
+ if true {
120
+ return Ok(Arc::new(NonPruner));
121
+ }
122
+
123
+ // the following codes is unreachable, but kept to help diagnostic performance issues
124
if let Some(exprs) = filter_exprs {
125
if exprs.is_empty() {
126
return Ok(Arc::new(NonPruner));
0 commit comments