1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix a comment. (CVS 384)

FossilOrigin-Name: 953928537c350e6c9df157553114c6d9d44712d5
This commit is contained in:
drh
2002-02-19 22:43:58 +00:00
parent 5cf8e8c7fa
commit 77c679c096
3 changed files with 10 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
C New\sROWIDs\sare\snumbered\ssequentially.\s(CVS\s383) C Fix\sa\scomment.\s(CVS\s384)
D 2002-02-19T22:42:05 D 2002-02-19T22:43:59
F Makefile.in 9fa4277413bf1d9cf91365f07d4108d7d87ed2af F Makefile.in 9fa4277413bf1d9cf91365f07d4108d7d87ed2af
F Makefile.template 3372d45f8853afdb70bd30cc6fb50a3cd9069834 F Makefile.template 3372d45f8853afdb70bd30cc6fb50a3cd9069834
F README a4c0ba11354ef6ba0776b400d057c59da47a4cc0 F README a4c0ba11354ef6ba0776b400d057c59da47a4cc0
@@ -19,7 +19,7 @@ F ltmain.sh e9ed72eb1d690f447c13945eaf69e28af531eda1
F publish.sh 5b59f4aff037aafa0e4a3b6fa599495dbd73f360 F publish.sh 5b59f4aff037aafa0e4a3b6fa599495dbd73f360
F sqlite.1 2e2bb0529ef468ade9e4322bd609d0695fb9ded9 F sqlite.1 2e2bb0529ef468ade9e4322bd609d0695fb9ded9
F src/TODO af7f3cab0228e34149cf98e073aa83d45878e7e6 F src/TODO af7f3cab0228e34149cf98e073aa83d45878e7e6
F src/btree.c 8256ea416850fbd2af0ae50779b1a4b604de13c2 F src/btree.c 495275fe14f3b718cf2f691dce979d4c0e1f8e5d
F src/btree.h 8abeabfe6e0b1a990b64fa457592a6482f6674f3 F src/btree.h 8abeabfe6e0b1a990b64fa457592a6482f6674f3
F src/build.c 088acf87a92b00edda1206ccafac3518660b1b3b F src/build.c 088acf87a92b00edda1206ccafac3518660b1b3b
F src/delete.c f8ad71be53cf18656b6573de65395852fe817f0c F src/delete.c f8ad71be53cf18656b6573de65395852fe817f0c
@@ -125,7 +125,7 @@ F www/speed.tcl 83457b2bf6bb430900bd48ca3dd98264d9a916a5
F www/sqlite.tcl 8b5884354cb615049aed83039f8dfe1552a44279 F www/sqlite.tcl 8b5884354cb615049aed83039f8dfe1552a44279
F www/tclsqlite.tcl 829b393d1ab187fd7a5e978631b3429318885c49 F www/tclsqlite.tcl 829b393d1ab187fd7a5e978631b3429318885c49
F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218 F www/vdbe.tcl 2013852c27a02a091d39a766bc87cff329f21218
P cc5abfe392bdb8c3ed00e0610bc2b41851bfc9d7 P 1686196a8aea326f616bc8205df99cd84d955ec4
R d110cdfb274a665cf18a7abdadd913ff R 42c062c2ca75817e3567e6aa37103eaa
U drh U drh
Z 2f4375a6c2ee111a8d6db399f5e3350c Z 4a1d19ca8703d5210ddbf3e99038aa5f

View File

@@ -1 +1 @@
1686196a8aea326f616bc8205df99cd84d955ec4 953928537c350e6c9df157553114c6d9d44712d5

View File

@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give. ** May you share freely, never taking more than you give.
** **
************************************************************************* *************************************************************************
** $Id: btree.c,v 1.54 2002/02/19 15:00:07 drh Exp $ ** $Id: btree.c,v 1.55 2002/02/19 22:43:59 drh Exp $
** **
** This file implements a external (disk-based) database using BTrees. ** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to ** For a detailed discussion of BTrees, refer to
@@ -1308,7 +1308,7 @@ static int moveToLeftmost(BtCursor *pCur){
/* Move the cursor to the first entry in the table. Return SQLITE_OK /* Move the cursor to the first entry in the table. Return SQLITE_OK
** on success. Set *pRes to 0 if the cursor actually points to something ** on success. Set *pRes to 0 if the cursor actually points to something
** or set *pRes to 1 if the table is empty and there is no first element. ** or set *pRes to 1 if the table is empty.
*/ */
int sqliteBtreeFirst(BtCursor *pCur, int *pRes){ int sqliteBtreeFirst(BtCursor *pCur, int *pRes){
int rc; int rc;
@@ -1327,7 +1327,7 @@ int sqliteBtreeFirst(BtCursor *pCur, int *pRes){
/* Move the cursor to the last entry in the table. Return SQLITE_OK /* Move the cursor to the last entry in the table. Return SQLITE_OK
** on success. Set *pRes to 0 if the cursor actually points to something ** on success. Set *pRes to 0 if the cursor actually points to something
** or set *pRes to 1 if the table is empty and there is no first element. ** or set *pRes to 1 if the table is empty.
*/ */
int sqliteBtreeLast(BtCursor *pCur, int *pRes){ int sqliteBtreeLast(BtCursor *pCur, int *pRes){
int rc; int rc;