]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a comment in btree.c. No code changes. (CVS 2774)
authordrh <drh@noemail.net>
Thu, 24 Nov 2005 14:24:28 +0000 (14:24 +0000)
committerdrh <drh@noemail.net>
Thu, 24 Nov 2005 14:24:28 +0000 (14:24 +0000)
FossilOrigin-Name: 0d8bd133a7530fb56ecb742472865f5a72a0ea5e

manifest
manifest.uuid
src/btree.c

index a249e3a328f06c1e25b3b881712ad57f625fe3a2..02aee2edd09e9bc3f5896286d26533d4922abf90 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sincorrect\stype\sconversions\swhen\scopying\sfrom\sa\stable\sinto\sitself.\nTicket\s#1536.\s(CVS\s2773)
-D 2005-11-24T13:15:33
+C Fix\sa\scomment\sin\sbtree.c.\s\sNo\scode\schanges.\s(CVS\s2774)
+D 2005-11-24T14:24:28
 F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1
 F Makefile.linux-gcc aee18d8a05546dcf1888bd4547e442008a49a092
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -33,7 +33,7 @@ F src/alter.c 149e871e1ad6648da9b72e69feb1bd1407bf5226
 F src/analyze.c ea42005eed52c382fcc7ef66969e7f1858597633
 F src/attach.c 4b21689700a72ae281fa85dbaff06b2a62bd49ee
 F src/auth.c 31e2304bef67f44d635655f44234387ea7d21454
-F src/btree.c 1ccc3b3931774a68ee0d6a8e2c8ea83f27b853fb
+F src/btree.c e742aacc7ccc62e31d8725c91f2ed5e32f188faf
 F src/btree.h 1ed561263ca0e335bc3e81d761c9d5ff8c22f61e
 F src/build.c 8c93ae10563e8b92d3d7ea532a606424be3cb4f7
 F src/callback.c 90ab4f235a2603c4cb8e6a2497091a71fb732bfa
@@ -320,7 +320,7 @@ F www/tclsqlite.tcl ddcf912ea48695603c8ed7efb29f0812ef8d1b49
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 5045f09933f57e4ae897969710b19d09b7af6022
-R 4997ed11edd337d9e88b262aa1b4e874
+P a2e55a3828d74d78b0b76f956a537a0d906f3191
+R 64b00ba284788c985658db51e3a3c3b4
 U drh
-Z 5126499ecc4de071954687fb6cbd6696
+Z 3176a9c572095a5021fc91a62543e245
index 01f95602a213b8a89caf1447ad7c8cccef4f5325..75ad2e2c07447b1404ee200d68d384600a2f1885 100644 (file)
@@ -1 +1 @@
-a2e55a3828d74d78b0b76f956a537a0d906f3191
\ No newline at end of file
+0d8bd133a7530fb56ecb742472865f5a72a0ea5e
\ No newline at end of file
index 02a641b43b0ac0ae9a07ec0fed37b869f699a350..8441dc0bc26f4b010e5d7a75af17d64343f46808 100644 (file)
@@ -9,7 +9,7 @@
 **    May you share freely, never taking more than you give.
 **
 *************************************************************************
-** $Id: btree.c,v 1.270 2005/10/20 07:28:18 drh Exp $
+** $Id: btree.c,v 1.271 2005/11/24 14:24:28 drh Exp $
 **
 ** This file implements a external (disk-based) database using BTrees.
 ** For a detailed discussion of BTrees, refer to
@@ -792,8 +792,9 @@ static void _pageIntegrity(MemPage *pPage){
 
 /*
 ** Defragment the page given.  All Cells are moved to the
-** beginning of the page and all free space is collected 
-** into one big FreeBlk at the end of the page.
+** end of the page and all free space is collected into one
+** big FreeBlk that occurs in between the header and cell
+** index and the cell data.
 */
 static int defragmentPage(MemPage *pPage){
   int i;                     /* Loop counter */