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 dadc8ce commit 27a02c0Copy full SHA for 27a02c0
src/query/service/src/pipelines/processors/transforms/hash_join/runtime_filter/convert.rs
@@ -273,9 +273,7 @@ async fn build_bloom_filter(
273
.map(|chunk| {
274
databend_common_base::runtime::spawn(async move {
275
let mut filter = BloomFilter::with_false_pos(0.01).expected_items(total_items);
276
- for hash in chunk {
277
- filter.insert_hash(hash);
278
- }
+ filter.extend(chunk);
279
Ok::<BloomFilter, ErrorCode>(filter)
280
})
281
0 commit comments