(
_db: *mut sqlite3,
_aux: Option<&Self::Aux>,
_args: VTabArguments,
)
| 36 | type Cursor = FindCursor; |
| 37 | |
| 38 | fn connect( |
| 39 | _db: *mut sqlite3, |
| 40 | _aux: Option<&Self::Aux>, |
| 41 | _args: VTabArguments, |
| 42 | ) -> Result<(String, FindTable)> { |
| 43 | let base: sqlite3_vtab = unsafe { mem::zeroed() }; |
| 44 | let vtab = FindTable { base }; |
| 45 | // TODO db.config(VTabConfig::Innocuous)?; |
| 46 | Ok((CREATE_SQL.to_owned(), vtab)) |
| 47 | } |
| 48 | fn destroy(&self) -> Result<()> { |
| 49 | Ok(()) |
| 50 | } |
nothing calls this directly
no outgoing calls
no test coverage detected