| 3598 | #endif /* SQLITE_OMIT_VIRTUALTABLE */ |
| 3599 | |
| 3600 | int sqlite3CompletionVtabInit(sqlite3 *db){ |
| 3601 | int rc = SQLITE_OK; |
| 3602 | #ifndef SQLITE_OMIT_VIRTUALTABLE |
| 3603 | rc = sqlite3_create_module(db, "completion", &completionModule, 0); |
| 3604 | #endif |
| 3605 | return rc; |
| 3606 | } |
| 3607 | |
| 3608 | #ifdef _WIN32 |
| 3609 |
no outgoing calls
no test coverage detected