| 165 | } |
| 166 | |
| 167 | static int xClose(sqlite3_vtab_cursor* cursor) { |
| 168 | delete Cursor::Upcast(cursor); |
| 169 | return SQLITE_OK; |
| 170 | } |
| 171 | |
| 172 | // This method uses a fresh cursor to start a new scan of a virtual table. |
| 173 | // The args and idxNum are provided by xBestIndex (idxStr is unused). |
nothing calls this directly
no outgoing calls
no test coverage detected