aboutsummaryrefslogtreecommitdiffstats
path: root/log_db/src/memtable_secondary.rs
diff options
context:
space:
mode:
Diffstat (limited to 'log_db/src/memtable_secondary.rs')
-rw-r--r--log_db/src/memtable_secondary.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/log_db/src/memtable_secondary.rs b/log_db/src/memtable_secondary.rs
index 5c6cd92..9086a97 100644
--- a/log_db/src/memtable_secondary.rs
+++ b/log_db/src/memtable_secondary.rs
@@ -31,10 +31,6 @@ impl SecondaryMemtable {
};
}
- pub fn replace(&mut self, key: &IndexableValue, values: &LogKeySet) {
- self.records.insert(key.clone(), values.clone());
- }
-
pub fn find_all(&self, key: &IndexableValue) -> &HashSet<LogKey> {
match self.records.get(key) {
Some(set) => set.log_keys(),