** Virtual table module xOpen method. */
| 10735 | ** Virtual table module xOpen method. |
| 10736 | */ |
| 10737 | static int expertOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ |
| 10738 | int rc = SQLITE_OK; |
| 10739 | ExpertCsr *pCsr; |
| 10740 | (void)pVTab; |
| 10741 | pCsr = idxMalloc(&rc, sizeof(ExpertCsr)); |
| 10742 | *ppCursor = (sqlite3_vtab_cursor*)pCsr; |
| 10743 | return rc; |
| 10744 | } |
| 10745 | |
| 10746 | /* |
| 10747 | ** Virtual table module xClose method. |
nothing calls this directly
no test coverage detected