Although this function does nothing, we cannot use xConnect directly, because that would cause SQLite to register an eponymous virtual table.
| 98 | // Although this function does nothing, we cannot use xConnect directly, |
| 99 | // because that would cause SQLite to register an eponymous virtual table. |
| 100 | static int xCreate(sqlite3* db_handle, void* _self, int argc, const char* const * argv, sqlite3_vtab** output, char** errOutput) { |
| 101 | return xConnect(db_handle, _self, argc, argv, output, errOutput); |
| 102 | } |
| 103 | |
| 104 | // This method uses the factory function to instantiate a new virtual table. |
| 105 | static int xConnect(sqlite3* db_handle, void* _self, int argc, const char* const * argv, sqlite3_vtab** output, char** errOutput) { |
nothing calls this directly
no outgoing calls
no test coverage detected