diff --git a/sstable/src/dictionary.rs b/sstable/src/dictionary.rs index 3a99fc16c..810b2e0b6 100644 --- a/sstable/src/dictionary.rs +++ b/sstable/src/dictionary.rs @@ -151,7 +151,7 @@ impl Dictionary { } } - pub(crate) fn sstable_delta_reader_block( + pub fn sstable_delta_reader_block( &self, block_addr: BlockAddr, ) -> io::Result> { diff --git a/sstable/src/sstable_index_v3.rs b/sstable/src/sstable_index_v3.rs index 191a62b99..ab0b62378 100644 --- a/sstable/src/sstable_index_v3.rs +++ b/sstable/src/sstable_index_v3.rs @@ -58,7 +58,7 @@ impl SSTableIndex { } /// Get the [`BlockAddr`] of the block containing the `ord`-th term. - pub(crate) fn get_block_with_ord(&self, ord: TermOrdinal) -> BlockAddr { + pub fn get_block_with_ord(&self, ord: TermOrdinal) -> BlockAddr { match self { SSTableIndex::V2(v2_index) => v2_index.get_block_with_ord(ord), SSTableIndex::V3(v3_index) => v3_index.get_block_with_ord(ord),