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 97277ad commit 82c3cedCopy full SHA for 82c3ced
src/query/storages/fuse/src/operations/read/runtime_filter_prunner.rs
@@ -90,16 +90,13 @@ pub fn runtime_filter_pruner(
90
false
91
});
92
93
- if pruned {
94
- info!(
95
- "Pruned partition with {:?} rows by runtime filter",
96
- part.nums_rows
97
- );
98
- Profile::record_usize_profile(ProfileStatisticsName::RuntimeFilterPruneParts, 1);
99
- return Ok(true);
100
- }
+ info!(
+ "Pruned partition with {:?} rows by runtime filter",
+ part.nums_rows
+ );
+ Profile::record_usize_profile(ProfileStatisticsName::RuntimeFilterPruneParts, 1);
101
102
- Ok(false)
+ Ok(pruned)
103
}
104
105
pub(crate) fn update_bitmap_with_bloom_filter(
0 commit comments