Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Clarification that the overwrite optimization does not affect the behavior of triggers. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.24 |
Files: | files | file ages | folders |
SHA3-256: |
27b8057665f267768844b5e6634b4198 |
User & Date: | drh 2018-06-05 23:20:09.073 |
Context
2018-06-09
| ||
22:13 | Fix typos in the compile.html page. (check-in: 10c05df9fb user: drh tags: branch-3.24) | |
2018-06-08
| ||
13:21 | Use https for all internal hyperlinks. (Leaf check-in: 59e5f9e3da user: drh tags: branch-3.24-https) | |
2018-06-05
| ||
23:20 | Clarification that the overwrite optimization does not affect the behavior of triggers. (check-in: 27b8057665 user: drh tags: branch-3.24) | |
2018-06-04
| ||
19:41 | Add the upsert-clause.gif image. (check-in: 7d927bcea1 user: drh tags: trunk) | |
Changes
Changes to pages/changes.in.
︙ | ︙ | |||
42 43 44 45 46 47 48 | <li> Automatically intercepts the raw [EXPLAIN QUERY PLAN] output and reformats it into an ASCII-art graph. <li> Lines that begin with "#" and that are not in the middle of an SQL statement are interpreted as comments. <li> Added the --append option to the ".backup" command. <li> Added the ".dbconfig" command. <p><b>Performance:</b> | > | | | | | > > > | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | <li> Automatically intercepts the raw [EXPLAIN QUERY PLAN] output and reformats it into an ASCII-art graph. <li> Lines that begin with "#" and that are not in the middle of an SQL statement are interpreted as comments. <li> Added the --append option to the ".backup" command. <li> Added the ".dbconfig" command. <p><b>Performance:</b> <li> [UPDATE] avoids unnecessary low-level disk writes when the contents of the database file do not actually change. For example, "UPDATE t1 SET x=25 WHERE y=?" generates no extra disk I/O if the value in column x is already 25. Similarly, when doing [UPDATE] on records that span multiple pages, only the subset of pages that actually change are written to disk. This is a low-level performance optimization only and does not affect the behavior of TRIGGERs or other higher level SQL structures. <li> Queries that use ORDER BY and LIMIT now try to avoid computing rows that cannot possibly come in under the LIMIT. This can greatly improve performance of ORDER BY LIMIT queries, especially when the LIMIT is small relative to the number of unrestricted output rows. <li> The [OR optimization] is allowed to proceed even if the OR expression has also been converted into an IN expression. Uses of the OR optimization are now also |
︙ | ︙ |