Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix documentation typos. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9d89e82c5d5b8696e6c7f78c83548edf |
User & Date: | drh 2018-05-09 10:10:56.993 |
Context
2018-05-09
| ||
10:11 | Merge fixes from the 3.23 branch. (check-in: cc22fb914a user: drh tags: trunk) | |
10:10 | Fix documentation typos. (check-in: 9d89e82c5d user: drh tags: trunk) | |
2018-05-08
| ||
14:32 | More details on the UPSERT documentation. (check-in: 7ca811b29f user: drh tags: trunk) | |
Changes
Changes to pages/changes.in.
︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - + | valid arguments to DEFAULT. <li> Added the sorter-reference optimization as a compile-time option. Only available if compiled with SQLITE_ENABLE_SORTER_REFERENCES. <li> Improve the format of the [EXPLAIN QUERY PLAN] raw output, so that it gives better information about the query plan and about the relationships between the various components of the plan. <li> The [CLI] automatically intercepts the raw [EXPLAIN QUERY PLAN] |
︙ |
Changes to pages/eqp.in.
︙ | |||
53 54 55 56 57 58 59 | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | - + | <p> In automatic EXPLAIN QUERY PLAN mode, the shell automatically runs a separate EXPLAIN QUERY PLAN query for each statement you enter and displays the result before actually running the query. Use the ".eqp off" command to turn automatic EXPLAIN QUERY PLAN mode back off. <p>^(EXPLAIN QUERY PLAN is most useful on a SELECT statement, |
︙ | |||
134 135 136 137 138 139 140 | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | - + - + | </codeblock>)^ <p> ^The order of the entries indicates the nesting order. In this case, the scan of table t1 using index i2 is the outer loop (since it appears first) and the full-table scan of table t2 is the inner loop (since it appears |
︙ |