| | @@ -16,11 +16,11 @@ |
| 16 | 16 | ** if you want a wrapper to interface SQLite with your choice of programming |
| 17 | 17 | ** language. The code for the "sqlite3" command-line shell is also in a |
| 18 | 18 | ** separate file. This file contains only code for the core SQLite library. |
| 19 | 19 | ** |
| 20 | 20 | ** The content in this amalgamation comes from Fossil check-in |
| 21 | | -** de8182cf1773ac0d04268d896a613841cf6b. |
| 21 | +** 96c92aba00c8375bc32fafcdf12429c58bd8. |
| 22 | 22 | */ |
| 23 | 23 | #define SQLITE_CORE 1 |
| 24 | 24 | #define SQLITE_AMALGAMATION 1 |
| 25 | 25 | #ifndef SQLITE_PRIVATE |
| 26 | 26 | # define SQLITE_PRIVATE static |
| | @@ -459,11 +459,11 @@ |
| 459 | 459 | ** [sqlite3_libversion_number()], [sqlite3_sourceid()], |
| 460 | 460 | ** [sqlite_version()] and [sqlite_source_id()]. |
| 461 | 461 | */ |
| 462 | 462 | #define SQLITE_VERSION "3.46.0" |
| 463 | 463 | #define SQLITE_VERSION_NUMBER 3046000 |
| 464 | | -#define SQLITE_SOURCE_ID "2024-05-21 11:11:29 de8182cf1773ac0d04268d896a613841cf6bf61f9f030342170657d5e06f2acb" |
| 464 | +#define SQLITE_SOURCE_ID "2024-05-23 13:25:27 96c92aba00c8375bc32fafcdf12429c58bd8aabfcadab6683e35bbb9cdebf19e" |
| 465 | 465 | |
| 466 | 466 | /* |
| 467 | 467 | ** CAPI3REF: Run-Time Library Version Numbers |
| 468 | 468 | ** KEYWORDS: sqlite3_version sqlite3_sourceid |
| 469 | 469 | ** |
| | @@ -84739,11 +84739,11 @@ |
| 84739 | 84739 | u8 *a = (u8*)pRec; /* Typecast byte array */ |
| 84740 | 84740 | Mem *pMem = *ppVal; /* Write result into this Mem object */ |
| 84741 | 84741 | |
| 84742 | 84742 | assert( iCol>0 ); |
| 84743 | 84743 | iHdr = getVarint32(a, nHdr); |
| 84744 | | - if( nHdr>nRec || iHdr>=nHdr ) return SQLITE_CORRUPT_BKPT; |
| 84744 | + if( nHdr>(u32)nRec || iHdr>=nHdr ) return SQLITE_CORRUPT_BKPT; |
| 84745 | 84745 | iField = nHdr; |
| 84746 | 84746 | for(i=0; i<=iCol; i++){ |
| 84747 | 84747 | iHdr += getVarint32(&a[iHdr], t); |
| 84748 | 84748 | testcase( iHdr==nHdr ); |
| 84749 | 84749 | testcase( iHdr==nHdr+1 ); |
| | @@ -252537,11 +252537,11 @@ |
| 252537 | 252537 | int nArg, /* Number of args */ |
| 252538 | 252538 | sqlite3_value **apUnused /* Function arguments */ |
| 252539 | 252539 | ){ |
| 252540 | 252540 | assert( nArg==0 ); |
| 252541 | 252541 | UNUSED_PARAM2(nArg, apUnused); |
| 252542 | | - sqlite3_result_text(pCtx, "fts5: 2024-05-20 17:52:35 08058d66d1bde4fcf8324482ee4c6c030c681383470d5076b6f75b74aac2ae29", -1, SQLITE_TRANSIENT); |
| 252542 | + sqlite3_result_text(pCtx, "fts5: 2024-05-23 13:25:27 96c92aba00c8375bc32fafcdf12429c58bd8aabfcadab6683e35bbb9cdebf19e", -1, SQLITE_TRANSIENT); |
| 252543 | 252543 | } |
| 252544 | 252544 | |
| 252545 | 252545 | /* |
| 252546 | 252546 | ** Return true if zName is the extension on one of the shadow tables used |
| 252547 | 252547 | ** by this module. |
| 252548 | 252548 | |