Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
Signed-off-by: Ruihang Xia <[email protected]>
  • Loading branch information
waynexia committed Dec 24, 2024
1 parent 009bd67 commit d2cdbac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index/src/bloom_filter/applier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl BloomFilterApplier {

// 2. Calculate bloom filter segment locations
let mut segment_locations = Vec::new();
for (&row_group_idx, _) in basement {
for &row_group_idx in basement.keys() {
// TODO(ruihang): support further filter over row selection

// todo: dedup & overlap
Expand Down

0 comments on commit d2cdbac

Please sign in to comment.