]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a comment in btree.c. No code changes. (CVS 5756)
authordanielk1977 <danielk1977@noemail.net>
Tue, 30 Sep 2008 16:48:10 +0000 (16:48 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Tue, 30 Sep 2008 16:48:10 +0000 (16:48 +0000)
FossilOrigin-Name: 0f3c56330b43fb7c9dc43a444ca38bace9397ede

manifest
manifest.uuid
src/btree.c

index c409ba4d3febbf36eafce0f299c63f9a7ea292ed..3165948ba06a3b13444689edb1b088dd06efde90 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Change\sleading\stabs\sinto\sspaces.\s(CVS\s5755)
-D 2008-09-30T14:06:29
+C Fix\sa\scomment\sin\sbtree.c.\sNo\scode\schanges.\s(CVS\s5756)
+D 2008-09-30T16:48:11
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in e4ab842f9a64ef61d57093539a8aab76b12810db
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -99,7 +99,7 @@ F src/attach.c db3f4a60538733c1e4dcb9d0217a6e0d6ccd615b
 F src/auth.c c8b2ab5c8bad4bd90ed7c294694f48269162c627
 F src/bitvec.c 95c86bd18d8fedf0533f5af196192546e10a7e7d
 F src/btmutex.c 709cad2cdca0afd013f0f612363810e53f59ec53
-F src/btree.c b7fbd31bd8b856abf86582451dd89418ee2112d0
+F src/btree.c d1720e1e26bc6304737aa0bf86fdc8557f2c39d3
 F src/btree.h 6371c5e599fab391a150c96afbc10062b276d107
 F src/btreeInt.h 3e93c0a6f363bbf68fdd975620f4d3671b6cf7bc
 F src/build.c 160c71acca8f643f436ed6c1ee2f684c88df4dfe
@@ -637,7 +637,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 83c064cae481ca95b7107e22e98fc599fe85a2da
-R 319340bfa62e8f2b4a8c5cb2fb651da4
-U drh
-Z 27a83ef36caf191b09200aa330c8990e
+P 4e536463c1aa9991de85c7efc826c28896ca61d3
+R d230b8ef533fbafc7b1b9585de11f133
+U danielk1977
+Z 11a16b730f49b9e3f152c7fd36e76118
index d64f23a64a868d7e5d76b1cb2b91f87b6b1b92de..10ccebfc4621ac72151421458c5a024cef40673d 100644 (file)
@@ -1 +1 @@
-4e536463c1aa9991de85c7efc826c28896ca61d3
\ No newline at end of file
+0f3c56330b43fb7c9dc43a444ca38bace9397ede
\ No newline at end of file
index b47331f5a1834d768ffef52aa290278bb553dba5..dedbdbabf031ce92456ecc15562b19d8a6ff3a3b 100644 (file)
@@ -9,7 +9,7 @@
 **    May you share freely, never taking more than you give.
 **
 *************************************************************************
-** $Id: btree.c,v 1.522 2008/09/30 14:06:29 drh Exp $
+** $Id: btree.c,v 1.523 2008/09/30 16:48:11 danielk1977 Exp $
 **
 ** This file implements a external (disk-based) database using BTrees.
 ** See the header comment on "btreeInt.h" for additional information.
@@ -5956,7 +5956,9 @@ int sqlite3BtreeDelete(BtCursor *pCur){
         ** calls restoreCursorPosition() to point the cursor to the copy
         ** stored on the internal node, then advances to the next entry,
         ** which happens to be the copy of the key on the internal node.
-        ** Net effect: leafCur is pointing back where
+        ** Net effect: leafCur is pointing back to the duplicate cell
+        ** that needs to be removed, and the leafCur.apPage[] and
+        ** leafCur.aiIdx[] arrays are correct.
         */
       #ifndef NDEBUG
         Pgno leafPgno = pLeafPage->pgno;