| 155 | } |
| 156 | |
| 157 | static int xDisconnect(sqlite3_vtab* vtab) { |
| 158 | delete VTab::Upcast(vtab); |
| 159 | return SQLITE_OK; |
| 160 | } |
| 161 | |
| 162 | static int xOpen(sqlite3_vtab* vtab, sqlite3_vtab_cursor** output) { |
| 163 | *output = (new Cursor())->Downcast(); |
nothing calls this directly
no outgoing calls
no test coverage detected