|
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 );
|
@@ -128972,9 +128974,9 @@ SQLITE_PRIVATE Select *sqlite3SelectNew(
|
128972 | 128974 | u32 selFlags, /* Flag parameters, such as SF_Distinct */
|
128973 | 128975 | Expr *pLimit /* LIMIT value. NULL means not used */
|
128974 | 128976 | ){
|
128975 |
| - Select *pNew, *pAllocated; |
| 128977 | + Select *pNew; |
128976 | 128978 | Select standin;
|
128977 |
| - pAllocated = pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) ); |
| 128979 | + pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) ); |
128978 | 128980 | if( pNew==0 ){
|
128979 | 128981 | assert( pParse->db->mallocFailed );
|
128980 | 128982 | pNew = &standin;
|
@@ -129008,11 +129010,12 @@ SQLITE_PRIVATE Select *sqlite3SelectNew(
|
129008 | 129010 | #endif
|
129009 | 129011 | if( pParse->db->mallocFailed ) {
|
129010 | 129012 | clearSelect(pParse->db, pNew, pNew!=&standin);
|
129011 |
| - pAllocated = 0; |
| 129013 | + pNew = 0; |
129012 | 129014 | }else{
|
129013 | 129015 | assert( pNew->pSrc!=0 || pParse->nErr>0 );
|
129014 | 129016 | }
|
129015 |
| - return pAllocated; |
| 129017 | + assert( pNew!=&standin ); |
| 129018 | + return pNew; |
129016 | 129019 | }
|
129017 | 129020 |
|
129018 | 129021 |
|
@@ -224821,7 +224824,7 @@ static void fts5SourceIdFunc(
|
224821 | 224824 | ){
|
224822 | 224825 | assert( nArg==0 );
|
224823 | 224826 | UNUSED_PARAM2(nArg, apUnused);
|
224824 |
| - 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); |
224825 | 224828 | }
|
224826 | 224829 |
|
224827 | 224830 | /*
|
@@ -229604,9 +229607,9 @@ SQLITE_API int sqlite3_stmt_init(
|
229604 | 229607 | #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_STMTVTAB) */
|
229605 | 229608 |
|
229606 | 229609 | /************** End of stmt.c ************************************************/
|
229607 |
| -#if __LINE__!=229608 |
| 229610 | +#if __LINE__!=229610 |
229608 | 229611 | #undef SQLITE_SOURCE_ID
|
229609 |
| -#define SQLITE_SOURCE_ID "2020-05-25 16:19:56 0c1fcf4711a2e66c813aed38cf41cd3e2123ee8eb6db98118086764c4ba8alt2" |
| 229612 | +#define SQLITE_SOURCE_ID "2020-06-04 12:58:43 ec02243ea6ce33b090870ae55ab8aa2534b54d216d45c4aa2fdbb00e8686alt2" |
229610 | 229613 | #endif
|
229611 | 229614 | /* Return the source-id for this library */
|
229612 | 229615 | SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; }
|
|
0 commit comments