fix wasm and simulator wal impl

This commit is contained in:
Pere Diaz Bou 2024-09-29 10:15:42 +02:00
parent 0f4270b48f
commit f43e53a815
2 changed files with 29 additions and 12 deletions

View file

@ -187,6 +187,10 @@ impl limbo_core::File for SimulatorFile {
}
self.inner.pwrite(pos, buffer, c)
}
fn sync(&self, c: Rc<limbo_core::Completion>) -> Result<()> {
todo!()
}
}
impl Drop for SimulatorFile {