Skip to content

Commit

Permalink
todo comment
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed Oct 5, 2024
1 parent c6dd800 commit aeca336
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tree/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ impl Tree {
fn get_internal_entry_from_segments<K: AsRef<[u8]>>(
&self,
key: K,
evict_tombstone: bool,
evict_tombstone: bool, // TODO: remove?, just always true
seqno: Option<SeqNo>,
) -> crate::Result<Option<InternalValue>> {
// NOTE: Create key hash for hash sharing
Expand Down Expand Up @@ -673,7 +673,7 @@ impl Tree {
pub fn get_internal_entry<K: AsRef<[u8]>>(
&self,
key: K,
evict_tombstone: bool,
evict_tombstone: bool, // TODO: remove?, just always true
seqno: Option<SeqNo>,
) -> crate::Result<Option<InternalValue>> {
// TODO: consolidate memtable & sealed behind single RwLock
Expand Down

0 comments on commit aeca336

Please sign in to comment.