store: remove rotate_memtable as could be the root cause of the issue

This commit is contained in:
nym21
2025-07-14 15:48:19 +02:00
parent ec960bfefa
commit c4ed6ed034
6 changed files with 28 additions and 58 deletions

View File

@@ -277,10 +277,6 @@ where
Ok(())
}
fn rotate_memtable(&self) {
let _ = self.partition.as_ref().unwrap().inner().rotate_memtable();
}
fn height(&self) -> Option<Height> {
self.meta.height()
}

View File

@@ -9,8 +9,6 @@ pub trait AnyStore {
fn name(&self) -> &'static str;
fn rotate_memtable(&self);
fn height(&self) -> Option<Height>;
fn has(&self, height: Height) -> bool;