diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2024-11-22 13:56:06 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2024-11-22 13:56:06 +0200 |
| commit | 8117ffb577a6fabb182604604dcec84f1b16affa (patch) | |
| tree | 6bb6bdb7dd5094991e91fd869736794e7170a16d /log_db/src/memtable_secondary.rs | |
| parent | 99e2d7b08f28b651b1721260485d47362fc3dc9a (diff) | |
Remove unused code
Diffstat (limited to 'log_db/src/memtable_secondary.rs')
| -rw-r--r-- | log_db/src/memtable_secondary.rs | 4 |
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(), |
