diff options
Diffstat (limited to 'log_db/src/memtable_secondary.rs')
| -rw-r--r-- | log_db/src/memtable_secondary.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/log_db/src/memtable_secondary.rs b/log_db/src/memtable_secondary.rs index a7a9a8a..9309fa2 100644 --- a/log_db/src/memtable_secondary.rs +++ b/log_db/src/memtable_secondary.rs @@ -31,7 +31,7 @@ impl SecondaryMemtable { }; } - pub fn find_all(&self, key: &IndexableValue) -> &HashSet<LogKey> { + pub fn find_by(&self, key: &IndexableValue) -> &HashSet<LogKey> { match self.records.get(key) { Some(set) => set.log_keys(), None => &EMPTY_SET, |
