| 6971 | #endif /* SQLITE_OMIT_VIRTUALTABLE */ |
| 6972 | |
| 6973 | int sqlite3CompletionVtabInit(sqlite3 *db){ |
| 6974 | int rc = SQLITE_OK; |
| 6975 | #ifndef SQLITE_OMIT_VIRTUALTABLE |
| 6976 | rc = sqlite3_create_module(db, "completion", &completionModule, 0); |
| 6977 | #endif |
| 6978 | return rc; |
| 6979 | } |
| 6980 | |
| 6981 | #ifdef _WIN32 |
| 6982 |
no outgoing calls
no test coverage detected