| | @@ -15,11 +15,11 @@ |
| 15 | 15 | ** of the embedded sqlite3.h header file.) Additional code files may be needed |
| 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 | | -** This amalgamation was generated on 2009-09-10 22:23:14 UTC. |
| 20 | +** This amalgamation was generated on 2009-09-11 14:16:13 UTC. |
| 21 | 21 | */ |
| 22 | 22 | #define SQLITE_CORE 1 |
| 23 | 23 | #define SQLITE_AMALGAMATION 1 |
| 24 | 24 | #ifndef SQLITE_PRIVATE |
| 25 | 25 | # define SQLITE_PRIVATE static |
| | @@ -647,11 +647,11 @@ |
| 647 | 647 | ** |
| 648 | 648 | ** Requirements: [H10011] [H10014] |
| 649 | 649 | */ |
| 650 | 650 | #define SQLITE_VERSION "3.6.18" |
| 651 | 651 | #define SQLITE_VERSION_NUMBER 3006018 |
| 652 | | -#define SQLITE_SOURCE_ID "2009-09-10 20:23:30 f42ec993ac9d42ca31305f26b09924108c36d9f4" |
| 652 | +#define SQLITE_SOURCE_ID "2009-09-11 14:05:07 b084828a771ec40be85f07c590ca99de4f6c24ee" |
| 653 | 653 | |
| 654 | 654 | /* |
| 655 | 655 | ** CAPI3REF: Run-Time Library Version Numbers {H10020} <S60100> |
| 656 | 656 | ** KEYWORDS: sqlite3_version |
| 657 | 657 | ** |
| | @@ -65697,12 +65697,13 @@ |
| 65697 | 65697 | /* |
| 65698 | 65698 | ** Reclaim the memory used by an index |
| 65699 | 65699 | */ |
| 65700 | 65700 | static void freeIndex(Index *p){ |
| 65701 | 65701 | sqlite3 *db = p->pTable->dbMem; |
| 65702 | | - /* testcase( db==0 ); */ |
| 65702 | +#ifndef SQLITE_OMIT_ANALYZE |
| 65703 | 65703 | sqlite3DeleteIndexSamples(p); |
| 65704 | +#endif |
| 65704 | 65705 | sqlite3DbFree(db, p->zColAff); |
| 65705 | 65706 | sqlite3DbFree(db, p); |
| 65706 | 65707 | } |
| 65707 | 65708 | |
| 65708 | 65709 | /* |
| 65709 | 65710 | |