Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in the rtreecheck() documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
68f1e1944ccb007d3c4804ca76d7547a |
User & Date: | drh 2018-01-09 19:15:45.441 |
Context
2018-01-09
| ||
19:47 | More typo fixes. (check-in: 6a23f5f429 user: drh tags: trunk) | |
19:15 | Fix typo in the rtreecheck() documentation. (check-in: 68f1e1944c user: drh tags: trunk) | |
16:41 | Add bug fixes to the 3.22.0 change log (check-in: 0e0412e603 user: drh tags: trunk) | |
Changes
Changes to pages/rtree.in.
︙ | ︙ | |||
598 599 600 601 602 603 604 | <tcl>hd_fragment rtreecheck rtreecheck()</tcl> <h2>Integrity Check using the rtreecheck() SQL function</h2> <p>The scalar SQL function rtreecheck(R) or rtreecheck(S,R) runs an integrity check on the rtree table named R containing in database S. The function returns a human-language description of any problems found, or the string 'ok' if everything is ok. Running rtreecheck() on an R*Tree | | | 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 | <tcl>hd_fragment rtreecheck rtreecheck()</tcl> <h2>Integrity Check using the rtreecheck() SQL function</h2> <p>The scalar SQL function rtreecheck(R) or rtreecheck(S,R) runs an integrity check on the rtree table named R containing in database S. The function returns a human-language description of any problems found, or the string 'ok' if everything is ok. Running rtreecheck() on an R*Tree virtual table is similar to running [PRAGMA integrity_check] on a database. <p>Example: To verify that an R*Tree named "demo_index" is well-formed and internally consistent, run: <codeblock> SELECT rtreecheck('demo_index'); |
︙ | ︙ |