Fossil SCM
Update the built-in SQLite to version 3.8.10.2.
Commit
36c457b086ed710f2f8b825e2657ead54b27364f
Parent
4742716fc16c713…
4 files changed
+2
-1
+4
-3
+2
-2
+1
-1
+2
-1
| --- src/shell.c | ||
| +++ src/shell.c | ||
| @@ -3256,11 +3256,12 @@ | ||
| 3256 | 3256 | azArg[1]); |
| 3257 | 3257 | rc = 1; |
| 3258 | 3258 | goto meta_command_exit; |
| 3259 | 3259 | } |
| 3260 | 3260 | if( nArg==3 ){ |
| 3261 | - sqlite3_limit(p->db, aLimit[iLimit].limitCode, integerValue(azArg[2])); | |
| 3261 | + sqlite3_limit(p->db, aLimit[iLimit].limitCode, | |
| 3262 | + (int)integerValue(azArg[2])); | |
| 3262 | 3263 | } |
| 3263 | 3264 | printf("%20s %d\n", aLimit[iLimit].zLimitName, |
| 3264 | 3265 | sqlite3_limit(p->db, aLimit[iLimit].limitCode, -1)); |
| 3265 | 3266 | } |
| 3266 | 3267 | }else |
| 3267 | 3268 |
| --- src/shell.c | |
| +++ src/shell.c | |
| @@ -3256,11 +3256,12 @@ | |
| 3256 | azArg[1]); |
| 3257 | rc = 1; |
| 3258 | goto meta_command_exit; |
| 3259 | } |
| 3260 | if( nArg==3 ){ |
| 3261 | sqlite3_limit(p->db, aLimit[iLimit].limitCode, integerValue(azArg[2])); |
| 3262 | } |
| 3263 | printf("%20s %d\n", aLimit[iLimit].zLimitName, |
| 3264 | sqlite3_limit(p->db, aLimit[iLimit].limitCode, -1)); |
| 3265 | } |
| 3266 | }else |
| 3267 |
| --- src/shell.c | |
| +++ src/shell.c | |
| @@ -3256,11 +3256,12 @@ | |
| 3256 | azArg[1]); |
| 3257 | rc = 1; |
| 3258 | goto meta_command_exit; |
| 3259 | } |
| 3260 | if( nArg==3 ){ |
| 3261 | sqlite3_limit(p->db, aLimit[iLimit].limitCode, |
| 3262 | (int)integerValue(azArg[2])); |
| 3263 | } |
| 3264 | printf("%20s %d\n", aLimit[iLimit].zLimitName, |
| 3265 | sqlite3_limit(p->db, aLimit[iLimit].limitCode, -1)); |
| 3266 | } |
| 3267 | }else |
| 3268 |
+4
-3
| --- src/sqlite3.c | ||
| +++ src/sqlite3.c | ||
| @@ -1,8 +1,8 @@ | ||
| 1 | 1 | /****************************************************************************** |
| 2 | 2 | ** This file is an amalgamation of many separate C source files from SQLite |
| 3 | -** version 3.8.10.1. By combining all the individual C code files into this | |
| 3 | +** version 3.8.10.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 |
| 7 | 7 | ** of 5% or more are commonly seen when SQLite is compiled as a single |
| 8 | 8 | ** translation unit. |
| @@ -316,13 +316,13 @@ | ||
| 316 | 316 | ** |
| 317 | 317 | ** See also: [sqlite3_libversion()], |
| 318 | 318 | ** [sqlite3_libversion_number()], [sqlite3_sourceid()], |
| 319 | 319 | ** [sqlite_version()] and [sqlite_source_id()]. |
| 320 | 320 | */ |
| 321 | -#define SQLITE_VERSION "3.8.10.1" | |
| 321 | +#define SQLITE_VERSION "3.8.10.2" | |
| 322 | 322 | #define SQLITE_VERSION_NUMBER 3008010 |
| 323 | -#define SQLITE_SOURCE_ID "2015-05-09 12:14:55 05b4b1f2a937c06c90db70c09890038f6c98ec40" | |
| 323 | +#define SQLITE_SOURCE_ID "2015-05-20 18:17:19 2ef4f3a5b1d1d0c4338f8243d40a2452cc1f7fe4" | |
| 324 | 324 | |
| 325 | 325 | /* |
| 326 | 326 | ** CAPI3REF: Run-Time Library Version Numbers |
| 327 | 327 | ** KEYWORDS: sqlite3_version, sqlite3_sourceid |
| 328 | 328 | ** |
| @@ -71037,10 +71037,11 @@ | ||
| 71037 | 71037 | ** representation. |
| 71038 | 71038 | */ |
| 71039 | 71039 | if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){ |
| 71040 | 71040 | sqlite3VdbeMemStringify(pRec, enc, 1); |
| 71041 | 71041 | } |
| 71042 | + pRec->flags &= ~(MEM_Real|MEM_Int); | |
| 71042 | 71043 | } |
| 71043 | 71044 | } |
| 71044 | 71045 | |
| 71045 | 71046 | /* |
| 71046 | 71047 | ** Try to convert the type of a function argument or a result column |
| 71047 | 71048 |
| --- src/sqlite3.c | |
| +++ src/sqlite3.c | |
| @@ -1,8 +1,8 @@ | |
| 1 | /****************************************************************************** |
| 2 | ** This file is an amalgamation of many separate C source files from SQLite |
| 3 | ** version 3.8.10.1. By combining all the individual C code files into this |
| 4 | ** single large file, the entire code can be compiled as a single translation |
| 5 | ** unit. This allows many compilers to do optimizations that would not be |
| 6 | ** possible if the files were compiled separately. Performance improvements |
| 7 | ** of 5% or more are commonly seen when SQLite is compiled as a single |
| 8 | ** translation unit. |
| @@ -316,13 +316,13 @@ | |
| 316 | ** |
| 317 | ** See also: [sqlite3_libversion()], |
| 318 | ** [sqlite3_libversion_number()], [sqlite3_sourceid()], |
| 319 | ** [sqlite_version()] and [sqlite_source_id()]. |
| 320 | */ |
| 321 | #define SQLITE_VERSION "3.8.10.1" |
| 322 | #define SQLITE_VERSION_NUMBER 3008010 |
| 323 | #define SQLITE_SOURCE_ID "2015-05-09 12:14:55 05b4b1f2a937c06c90db70c09890038f6c98ec40" |
| 324 | |
| 325 | /* |
| 326 | ** CAPI3REF: Run-Time Library Version Numbers |
| 327 | ** KEYWORDS: sqlite3_version, sqlite3_sourceid |
| 328 | ** |
| @@ -71037,10 +71037,11 @@ | |
| 71037 | ** representation. |
| 71038 | */ |
| 71039 | if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){ |
| 71040 | sqlite3VdbeMemStringify(pRec, enc, 1); |
| 71041 | } |
| 71042 | } |
| 71043 | } |
| 71044 | |
| 71045 | /* |
| 71046 | ** Try to convert the type of a function argument or a result column |
| 71047 |
| --- src/sqlite3.c | |
| +++ src/sqlite3.c | |
| @@ -1,8 +1,8 @@ | |
| 1 | /****************************************************************************** |
| 2 | ** This file is an amalgamation of many separate C source files from SQLite |
| 3 | ** version 3.8.10.2. By combining all the individual C code files into this |
| 4 | ** single large file, the entire code can be compiled as a single translation |
| 5 | ** unit. This allows many compilers to do optimizations that would not be |
| 6 | ** possible if the files were compiled separately. Performance improvements |
| 7 | ** of 5% or more are commonly seen when SQLite is compiled as a single |
| 8 | ** translation unit. |
| @@ -316,13 +316,13 @@ | |
| 316 | ** |
| 317 | ** See also: [sqlite3_libversion()], |
| 318 | ** [sqlite3_libversion_number()], [sqlite3_sourceid()], |
| 319 | ** [sqlite_version()] and [sqlite_source_id()]. |
| 320 | */ |
| 321 | #define SQLITE_VERSION "3.8.10.2" |
| 322 | #define SQLITE_VERSION_NUMBER 3008010 |
| 323 | #define SQLITE_SOURCE_ID "2015-05-20 18:17:19 2ef4f3a5b1d1d0c4338f8243d40a2452cc1f7fe4" |
| 324 | |
| 325 | /* |
| 326 | ** CAPI3REF: Run-Time Library Version Numbers |
| 327 | ** KEYWORDS: sqlite3_version, sqlite3_sourceid |
| 328 | ** |
| @@ -71037,10 +71037,11 @@ | |
| 71037 | ** representation. |
| 71038 | */ |
| 71039 | if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){ |
| 71040 | sqlite3VdbeMemStringify(pRec, enc, 1); |
| 71041 | } |
| 71042 | pRec->flags &= ~(MEM_Real|MEM_Int); |
| 71043 | } |
| 71044 | } |
| 71045 | |
| 71046 | /* |
| 71047 | ** Try to convert the type of a function argument or a result column |
| 71048 |
+2
-2
| --- src/sqlite3.h | ||
| +++ src/sqlite3.h | ||
| @@ -109,13 +109,13 @@ | ||
| 109 | 109 | ** |
| 110 | 110 | ** See also: [sqlite3_libversion()], |
| 111 | 111 | ** [sqlite3_libversion_number()], [sqlite3_sourceid()], |
| 112 | 112 | ** [sqlite_version()] and [sqlite_source_id()]. |
| 113 | 113 | */ |
| 114 | -#define SQLITE_VERSION "3.8.10.1" | |
| 114 | +#define SQLITE_VERSION "3.8.10.2" | |
| 115 | 115 | #define SQLITE_VERSION_NUMBER 3008010 |
| 116 | -#define SQLITE_SOURCE_ID "2015-05-09 12:14:55 05b4b1f2a937c06c90db70c09890038f6c98ec40" | |
| 116 | +#define SQLITE_SOURCE_ID "2015-05-20 18:17:19 2ef4f3a5b1d1d0c4338f8243d40a2452cc1f7fe4" | |
| 117 | 117 | |
| 118 | 118 | /* |
| 119 | 119 | ** CAPI3REF: Run-Time Library Version Numbers |
| 120 | 120 | ** KEYWORDS: sqlite3_version, sqlite3_sourceid |
| 121 | 121 | ** |
| 122 | 122 |
| --- src/sqlite3.h | |
| +++ src/sqlite3.h | |
| @@ -109,13 +109,13 @@ | |
| 109 | ** |
| 110 | ** See also: [sqlite3_libversion()], |
| 111 | ** [sqlite3_libversion_number()], [sqlite3_sourceid()], |
| 112 | ** [sqlite_version()] and [sqlite_source_id()]. |
| 113 | */ |
| 114 | #define SQLITE_VERSION "3.8.10.1" |
| 115 | #define SQLITE_VERSION_NUMBER 3008010 |
| 116 | #define SQLITE_SOURCE_ID "2015-05-09 12:14:55 05b4b1f2a937c06c90db70c09890038f6c98ec40" |
| 117 | |
| 118 | /* |
| 119 | ** CAPI3REF: Run-Time Library Version Numbers |
| 120 | ** KEYWORDS: sqlite3_version, sqlite3_sourceid |
| 121 | ** |
| 122 |
| --- src/sqlite3.h | |
| +++ src/sqlite3.h | |
| @@ -109,13 +109,13 @@ | |
| 109 | ** |
| 110 | ** See also: [sqlite3_libversion()], |
| 111 | ** [sqlite3_libversion_number()], [sqlite3_sourceid()], |
| 112 | ** [sqlite_version()] and [sqlite_source_id()]. |
| 113 | */ |
| 114 | #define SQLITE_VERSION "3.8.10.2" |
| 115 | #define SQLITE_VERSION_NUMBER 3008010 |
| 116 | #define SQLITE_SOURCE_ID "2015-05-20 18:17:19 2ef4f3a5b1d1d0c4338f8243d40a2452cc1f7fe4" |
| 117 | |
| 118 | /* |
| 119 | ** CAPI3REF: Run-Time Library Version Numbers |
| 120 | ** KEYWORDS: sqlite3_version, sqlite3_sourceid |
| 121 | ** |
| 122 |
+1
-1
| --- www/changes.wiki | ||
| +++ www/changes.wiki | ||
| @@ -29,11 +29,11 @@ | ||
| 29 | 29 | * Add [/help?cmd=leaves|fossil leaves -multiple], for finding multiple |
| 30 | 30 | leaves on the same branch. |
| 31 | 31 | * Added the "Blitz" skin option. |
| 32 | 32 | * Removed the ".fossil-settings/keep-glob" file. It should not have been |
| 33 | 33 | checked into the repository. |
| 34 | - * Update the built-in SQLite to version 3.8.10.1. | |
| 34 | + * Update the built-in SQLite to version 3.8.10.2. | |
| 35 | 35 | * Make [/help?cmd=open|fossil open] honor ".fossil-settings/allow-symlinks". |
| 36 | 36 | * Allow [/help?cmd=add|fossil add] to be used on symlinks to nonexistent or |
| 37 | 37 | unreadable files in the same way as [/help?cmd=addremove|fossil addremove]. |
| 38 | 38 | * Added fork warning to be issued if sync produced a fork |
| 39 | 39 | * Update the [/help?cmd=/info|info] page to report when a file becomes a |
| 40 | 40 |
| --- www/changes.wiki | |
| +++ www/changes.wiki | |
| @@ -29,11 +29,11 @@ | |
| 29 | * Add [/help?cmd=leaves|fossil leaves -multiple], for finding multiple |
| 30 | leaves on the same branch. |
| 31 | * Added the "Blitz" skin option. |
| 32 | * Removed the ".fossil-settings/keep-glob" file. It should not have been |
| 33 | checked into the repository. |
| 34 | * Update the built-in SQLite to version 3.8.10.1. |
| 35 | * Make [/help?cmd=open|fossil open] honor ".fossil-settings/allow-symlinks". |
| 36 | * Allow [/help?cmd=add|fossil add] to be used on symlinks to nonexistent or |
| 37 | unreadable files in the same way as [/help?cmd=addremove|fossil addremove]. |
| 38 | * Added fork warning to be issued if sync produced a fork |
| 39 | * Update the [/help?cmd=/info|info] page to report when a file becomes a |
| 40 |
| --- www/changes.wiki | |
| +++ www/changes.wiki | |
| @@ -29,11 +29,11 @@ | |
| 29 | * Add [/help?cmd=leaves|fossil leaves -multiple], for finding multiple |
| 30 | leaves on the same branch. |
| 31 | * Added the "Blitz" skin option. |
| 32 | * Removed the ".fossil-settings/keep-glob" file. It should not have been |
| 33 | checked into the repository. |
| 34 | * Update the built-in SQLite to version 3.8.10.2. |
| 35 | * Make [/help?cmd=open|fossil open] honor ".fossil-settings/allow-symlinks". |
| 36 | * Allow [/help?cmd=add|fossil add] to be used on symlinks to nonexistent or |
| 37 | unreadable files in the same way as [/help?cmd=addremove|fossil addremove]. |
| 38 | * Added fork warning to be issued if sync produced a fork |
| 39 | * Update the [/help?cmd=/info|info] page to report when a file becomes a |
| 40 |