Port vtablog as an example of a writable VTab

This commit is contained in:
gwenn
2022-03-20 11:50:22 +01:00
committed by Thom Chiovoloni
parent 762321c15e
commit fe1150b0cf
6 changed files with 316 additions and 22 deletions

View File

@@ -39,7 +39,7 @@ fn test_dummy_module() -> rusqlite::Result<()> {
Ok(())
}
fn open(&'vtab self) -> Result<DummyTabCursor<'vtab>> {
fn open(&'vtab mut self) -> Result<DummyTabCursor<'vtab>> {
Ok(DummyTabCursor::default())
}
}