|
1 | 1 | /******************************************************************************
|
2 | 2 | ** This file is an amalgamation of many separate C source files from SQLite
|
3 |
| -** version 3.32.1. By combining all the individual C code files into this |
| 3 | +** version 3.32.2. By combining all the individual C code files into this |
4 | 4 | ** single large file, the entire code can be compiled as a single translation
|
5 | 5 | ** unit. This allows many compilers to do optimizations that would not be
|
6 | 6 | ** possible if the files were compiled separately. Performance improvements
|
@@ -1162,9 +1162,9 @@ extern "C" {
|
1162 | 1162 | ** [sqlite3_libversion_number()], [sqlite3_sourceid()],
|
1163 | 1163 | ** [sqlite_version()] and [sqlite_source_id()].
|
1164 | 1164 | */
|
1165 |
| -#define SQLITE_VERSION "3.32.1" |
1166 |
| -#define SQLITE_VERSION_NUMBER 3032001 |
1167 |
| -#define SQLITE_SOURCE_ID "2020-05-25 16:19:56 0c1fcf4711a2e66c813aed38cf41cd3e2123ee8eb6db98118086764c4ba83350" |
| 1165 | +#define SQLITE_VERSION "3.32.2" |
| 1166 | +#define SQLITE_VERSION_NUMBER 3032002 |
| 1167 | +#define SQLITE_SOURCE_ID "2020-06-04 12:58:43 ec02243ea6ce33b090870ae55ab8aa2534b54d216d45c4aa2fdbb00e86861e8c" |
1168 | 1168 |
|
1169 | 1169 | /*
|
1170 | 1170 | ** CAPI3REF: Run-Time Library Version Numbers
|
@@ -85820,6 +85820,8 @@ SQLITE_PRIVATE int sqlite3VdbeExec(
|
85820 | 85820 | goto no_mem;
|
85821 | 85821 | }
|
85822 | 85822 | assert( p->rc==SQLITE_OK || (p->rc&0xff)==SQLITE_BUSY );
|
| 85823 | + testcase( p->rc!=SQLITE_OK ); |
| 85824 | + p->rc = SQLITE_OK; |
85823 | 85825 | assert( p->bIsReader || p->readOnly!=0 );
|
85824 | 85826 | p->iCurrentTime = 0;
|
85825 | 85827 | assert( p->explain==0 );
|
@@ -224822,7 +224824,7 @@ static void fts5SourceIdFunc(
|
224822 | 224824 | ){
|
224823 | 224825 | assert( nArg==0 );
|
224824 | 224826 | UNUSED_PARAM2(nArg, apUnused);
|
224825 |
| - sqlite3_result_text(pCtx, "fts5: 2020-05-25 16:19:56 0c1fcf4711a2e66c813aed38cf41cd3e2123ee8eb6db98118086764c4ba83350", -1, SQLITE_TRANSIENT); |
| 224827 | + sqlite3_result_text(pCtx, "fts5: 2020-06-04 12:58:43 ec02243ea6ce33b090870ae55ab8aa2534b54d216d45c4aa2fdbb00e86861e8c", -1, SQLITE_TRANSIENT); |
224826 | 224828 | }
|
224827 | 224829 |
|
224828 | 224830 | /*
|
@@ -229605,9 +229607,9 @@ SQLITE_API int sqlite3_stmt_init(
|
229605 | 229607 | #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_STMTVTAB) */
|
229606 | 229608 |
|
229607 | 229609 | /************** End of stmt.c ************************************************/
|
229608 |
| -#if __LINE__!=229608 |
| 229610 | +#if __LINE__!=229610 |
229609 | 229611 | #undef SQLITE_SOURCE_ID
|
229610 |
| -#define SQLITE_SOURCE_ID "2020-05-25 16:19:56 0c1fcf4711a2e66c813aed38cf41cd3e2123ee8eb6db98118086764c4ba8alt2" |
| 229612 | +#define SQLITE_SOURCE_ID "2020-06-04 12:58:43 ec02243ea6ce33b090870ae55ab8aa2534b54d216d45c4aa2fdbb00e8686alt2" |
229611 | 229613 | #endif
|
229612 | 229614 | /* Return the source-id for this library */
|
229613 | 229615 | SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; }
|
|
0 commit comments