Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove the SQLITE_ENABLE_TREE_EXPLAIN compile-time option. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a893d831f4e04e69a7006a74da143a2d |
User & Date: | drh 2014-09-30 12:57:03.537 |
Context
2014-10-05
| ||
20:07 | Move the 3.8.7 release into October. Updates to URI documentation. (check-in: 55869edbde user: drh tags: trunk) | |
2014-09-30
| ||
12:57 | Remove the SQLITE_ENABLE_TREE_EXPLAIN compile-time option. (check-in: a893d831f4 user: drh tags: trunk) | |
2014-09-25
| ||
21:14 | Links to syntax diagrams now go to a page that contains just that one diagram, rather than the page of all diagrams. This is the first step toward adding descriptive text about each diagram. (check-in: 3fd4c6332b user: drh tags: trunk) | |
Changes
Changes to pages/changes.in.
︙ | ︙ | |||
16 17 18 19 20 21 22 | global nChng aChng set aChng($nChng) [list $date $desc $options] incr nChng } chng {2014-11-?? (3.8.7)} { <p><b>Performance Enhancements:</b> | | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | global nChng aChng set aChng($nChng) [list $date $desc $options] incr nChng } chng {2014-11-?? (3.8.7)} { <p><b>Performance Enhancements:</b> <li>Many micro-optimizations result in 18% more work for the same number of CPU cycles relative to the previous release. The cumulative performance increase since [version 3.8.0] is 58%. (Measured using [http://valgrind.org/docs/manual/cg-manual.html|cachegrind] on the [http://www.sqlite.org/src/artifact/83f6b3318f7ee|speedtest1.c] workload on Ubuntu 13.10 x64 with gcc 4.8.1 and -Os. Your performance may vary.) <li>Provide the ability for the sorter to start and use auxiliary helper threads in order to increase real-time response. This feature is off by default and may be enabled using the [PRAGMA threads] command or the [SQLITE_DEFAULT_WORKER_THREADS] |
︙ | ︙ |
Changes to pages/compile.in.
︙ | ︙ | |||
662 663 664 665 666 667 668 | whereas the STAT4 enhancement records histogram data from all columns of each index. The [SQLITE_ENABLE_STAT3] compile-time option is a no-op and is ignored if the SQLITE_ENABLE_STAT4 compile-time option is used. } COMPILE_OPTION {SQLITE_ENABLE_TREE_EXPLAIN} { | < | < < < < < < | 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 | whereas the STAT4 enhancement records histogram data from all columns of each index. The [SQLITE_ENABLE_STAT3] compile-time option is a no-op and is ignored if the SQLITE_ENABLE_STAT4 compile-time option is used. } COMPILE_OPTION {SQLITE_ENABLE_TREE_EXPLAIN} { This compile-time option is no longer used. } COMPILE_OPTION {SQLITE_ENABLE_UPDATE_DELETE_LIMIT} { This option enables an optional ORDER BY and LIMIT clause on [UPDATE] and [DELETE] statements. <p>If this option is defined, then it must also be |
︙ | ︙ |