** Virtual table module xOpen method. */
| 8892 | ** Virtual table module xOpen method. |
| 8893 | */ |
| 8894 | static int expertOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ |
| 8895 | int rc = SQLITE_OK; |
| 8896 | ExpertCsr *pCsr; |
| 8897 | (void)pVTab; |
| 8898 | pCsr = idxMalloc(&rc, sizeof(ExpertCsr)); |
| 8899 | *ppCursor = (sqlite3_vtab_cursor*)pCsr; |
| 8900 | return rc; |
| 8901 | } |
| 8902 | |
| 8903 | /* |
| 8904 | ** Virtual table module xClose method. |
nothing calls this directly
no test coverage detected