| 72 | } |
| 73 | |
| 74 | static int |
| 75 | my_create(sqlite3 *db, void *pAux, int argc, const char * const * argv, sqlite3_vtab **ppVTab, char **c) { |
| 76 | return my_connect(db, pAux, argc, argv, ppVTab, c); |
| 77 | } |
| 78 | |
| 79 | static int my_disconnect(sqlite3_vtab *pVTab) { |
| 80 | sqlite3_free(pVTab); |
nothing calls this directly
no test coverage detected