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