Skip to content

Commit 1746c26

Browse files
committed
wip
1 parent e45ce2c commit 1746c26

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

src/table/block/hash_index/reader.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,6 @@ impl<'a> Reader<'a> {
2828
self.0.len()
2929
}
3030

31-
/// Returns the number of empty slots in the hash index.
32-
#[must_use]
33-
#[expect(
34-
clippy::naive_bytecount,
35-
reason = "only used in metrics, so no need to be hyper-optimized"
36-
)]
37-
pub fn free_count(&self) -> usize {
38-
self.0.iter().filter(|&&byte| byte == MARKER_FREE).count()
39-
}
40-
4131
/// Returns the number of conflict markers in the hash index.
4232
#[must_use]
4333
#[expect(

src/table/filter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
pub mod bit_array;
66
pub mod block;
7-
pub mod blocked_bloom;
7+
// pub mod blocked_bloom;
88
pub mod standard_bloom;
99

1010
use standard_bloom::Builder as StandardBloomFilterBuilder;

0 commit comments

Comments
 (0)