Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Version 3.6.18 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk | release |
Files: | files | file ages | folders |
SHA1: |
b084828a771ec40be85f07c590ca99de |
User & Date: | drh 2009-09-11 14:05:07.000 |
Original Comment: | Add an #ifndef so that the build works with SQLITE_OMIT_ANALYZE again. |
Context
2009-09-11
| ||
17:59 | Make sure the (unsupported) configure script in the source tree has execute permission prior to constructing a tarball. Ticket [65bbb65a47ce]. (check-in: 5e0e941f3a user: drh tags: trunk) | |
14:05 | Version 3.6.18 (check-in: b084828a77 user: drh tags: trunk, release) | |
2009-09-10
| ||
22:30 | Omit the mutexIsInit test variable when mutexes are disabled. (check-in: 3ea1043443 user: drh tags: trunk) | |
Changes
Changes to src/build.c.
︙ | ︙ | |||
342 343 344 345 346 347 348 | } /* ** Reclaim the memory used by an index */ static void freeIndex(Index *p){ sqlite3 *db = p->pTable->dbMem; | | > | 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | } /* ** Reclaim the memory used by an index */ static void freeIndex(Index *p){ sqlite3 *db = p->pTable->dbMem; #ifndef SQLITE_OMIT_ANALYZE sqlite3DeleteIndexSamples(p); #endif sqlite3DbFree(db, p->zColAff); sqlite3DbFree(db, p); } /* ** Remove the given index from the index hash table, and free ** its memory structures. |
︙ | ︙ |