OLD | NEW |
1 /* | 1 /* |
2 ** 2013-04-16 | 2 ** 2013-04-16 |
3 ** | 3 ** |
4 ** The author disclaims copyright to this source code. In place of | 4 ** The author disclaims copyright to this source code. In place of |
5 ** a legal notice, here is a blessing: | 5 ** a legal notice, here is a blessing: |
6 ** | 6 ** |
7 ** May you do good and not evil. | 7 ** May you do good and not evil. |
8 ** May you find forgiveness for yourself and forgive others. | 8 ** May you find forgiveness for yourself and forgive others. |
9 ** May you share freely, never taking more than you give. | 9 ** May you share freely, never taking more than you give. |
10 ** | 10 ** |
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
949 const sqlite3_api_routines *pApi | 949 const sqlite3_api_routines *pApi |
950 ){ | 950 ){ |
951 int rc = SQLITE_OK; | 951 int rc = SQLITE_OK; |
952 SQLITE_EXTENSION_INIT2(pApi); | 952 SQLITE_EXTENSION_INIT2(pApi); |
953 (void)pzErrMsg; | 953 (void)pzErrMsg; |
954 #ifndef SQLITE_OMIT_VIRTUALTABLE | 954 #ifndef SQLITE_OMIT_VIRTUALTABLE |
955 rc = sqlite3_create_module(db, "transitive_closure", &closureModule, 0); | 955 rc = sqlite3_create_module(db, "transitive_closure", &closureModule, 0); |
956 #endif /* SQLITE_OMIT_VIRTUALTABLE */ | 956 #endif /* SQLITE_OMIT_VIRTUALTABLE */ |
957 return rc; | 957 return rc; |
958 } | 958 } |
OLD | NEW |