Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos in comments used to help generate documentation. No changes to code. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
13a2d90a2869c53b79754de39045bbbd |
User & Date: | drh 2014-08-14 13:06:25 |
Context
2014-08-14
| ||
19:53 | Fix an assert that can fail if the database file is corrupted. check-in: 3f45b819 user: dan tags: trunk | |
18:31 | Fix compiler warnings on WinCE. Closed-Leaf check-in: cc910b8e user: mistachkin tags: winCeWarn | |
14:02 | Merge the pre-3.8.6 changes into the threads branch. check-in: a608fd1d user: drh tags: threads | |
13:39 | Merge the pre-3.8.6 changes from trunk into the apple-osx branch. check-in: 08058df3 user: drh tags: apple-osx | |
13:06 | Fix typos in comments used to help generate documentation. No changes to code. check-in: 13a2d90a user: drh tags: trunk | |
02:59 | Add icon to the Windows shell executable. This is a resource change only, no changes to code. check-in: f5cce9db user: mistachkin tags: trunk | |
Changes
Changes to src/vdbe.c.
3527 3527 ** that are used as an unpacked index key. 3528 3528 ** 3529 3529 ** Reposition cursor P1 so that it points to the smallest entry that 3530 3530 ** is greater than the key value. If there are no records greater than 3531 3531 ** the key and P2 is not zero, then jump to P2. 3532 3532 ** 3533 3533 ** This opcode leaves the cursor configured to move in forward order, 3534 -** from the begining toward the end. In other words, the cursor is 3534 +** from the beginning toward the end. In other words, the cursor is 3535 3535 ** configured to use Next, not Prev. 3536 3536 ** 3537 3537 ** See also: Found, NotFound, SeekLt, SeekGe, SeekLe 3538 3538 */ 3539 3539 /* Opcode: SeekLT P1 P2 P3 P4 * 3540 3540 ** Synopsis: key=r[P3@P4] 3541 3541 ** ................................................................................ 4544 4544 ** The next use of the Rowid or Column or Next instruction for P1 4545 4545 ** will refer to the first entry in the database table or index. 4546 4546 ** If the table or index is empty and P2>0, then jump immediately to P2. 4547 4547 ** If P2 is 0 or if the table or index is not empty, fall through 4548 4548 ** to the following instruction. 4549 4549 ** 4550 4550 ** This opcode leaves the cursor configured to move in forward order, 4551 -** from the begining toward the end. In other words, the cursor is 4551 +** from the beginning toward the end. In other words, the cursor is 4552 4552 ** configured to use Next, not Prev. 4553 4553 */ 4554 4554 case OP_Rewind: { /* jump */ 4555 4555 VdbeCursor *pC; 4556 4556 BtCursor *pCrsr; 4557 4557 int res; 4558 4558