]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a comment. (CVS 1938)
authordrh <drh@noemail.net>
Fri, 3 Sep 2004 23:32:18 +0000 (23:32 +0000)
committerdrh <drh@noemail.net>
Fri, 3 Sep 2004 23:32:18 +0000 (23:32 +0000)
FossilOrigin-Name: af44ddeea110576bf9c475b5e6e3540ee50c5edf

manifest
manifest.uuid
src/btree.c

index a560c4e45981f78d4faef70149fa731c95d3ea4b..3cbdd475376e94f2a3b29406ec42623d55b4452c 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Modify\sbtree.c\sso\sthat\sis\sallocates\sbig\sdata\sstructures\susing\smalloc()\ninstead\sof\sallocating\sfrom\sthe\sstack.\s\sStack\sallocations\scause\sproblems\nfor\sembedded\ssystems\sand\spthreads\simplementations\sthat\sonly\sallocate\sa\nlimited\samount\sof\sstack\sspace.\s(CVS\s1937)
-D 2004-09-03T18:38:45
+C Fix\sa\scomment.\s(CVS\s1938)
+D 2004-09-03T23:32:19
 F Makefile.in 65a7c43fcaf9a710d62f120b11b6e435eeb4a450
 F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -28,7 +28,7 @@ F sqlite3.def 84215604aa7b547d75e0f7b437966e7ad18fa8b2
 F sqlite3.pc.in 985b9bf34192a549d7d370e0f0b6b34a4f61369a
 F src/attach.c 0bd4f11da6999665da30625665a4096ba7898de6
 F src/auth.c 60db23b98bb94c8b0178180faaf49dc116674217
-F src/btree.c 91a6f5e90c6e7a15cc9af4257866a03c1614442e
+F src/btree.c fd5e339c83459ea42fb055f0e59c0a682b0da422
 F src/btree.h 94dfec0a1722d33359b23e7e310f2b64ffedf029
 F src/build.c 35275654d9c5ce6c1c0c78e391f85e6915a8a66b
 F src/date.c edff4aa851eeca8abbc737dc3933a2f0671156ce
@@ -248,7 +248,7 @@ F www/tclsqlite.tcl 560ecd6a916b320e59f2917317398f3d59b7cc25
 F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9
 F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
 F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
-P 9e6645dd781cb8e422e371ca23766dc1b689481e
-R f084bc97486f0a01c7a5a8e06138356c
+P 4595292f936bdbec10734f42682824e91ff71d11
+R a6a2c4ff901213b63bfaa0048bce9198
 U drh
-Z 4d667560618f87c860d31b44d3368e4d
+Z c9eae4290234a644b3110522f8908fc1
index b8334d58fcbfadae8a8ebeaad4081b2502ec1fa2..774a88702b819a5946eab0aa8f7c36a71194bb8e 100644 (file)
@@ -1 +1 @@
-4595292f936bdbec10734f42682824e91ff71d11
\ No newline at end of file
+af44ddeea110576bf9c475b5e6e3540ee50c5edf
\ No newline at end of file
index 354d36866df37ecc08980af516bcc58757a1a9be..9470d600829404d9ec11ae0d413e830c6f1c1d8b 100644 (file)
@@ -9,7 +9,7 @@
 **    May you share freely, never taking more than you give.
 **
 *************************************************************************
-** $Id: btree.c,v 1.186 2004/09/03 18:38:45 drh Exp $
+** $Id: btree.c,v 1.187 2004/09/03 23:32:19 drh Exp $
 **
 ** This file implements a external (disk-based) database using BTrees.
 ** For a detailed discussion of BTrees, refer to
@@ -1014,12 +1014,8 @@ static void pageReinit(void *pData, int pageSize){
 }
 
 /*
-** Open a new database.
-**
-** Actually, this routine just sets up the internal data structures
-** for accessing the database.  We do not open the database file 
-** until the first page is loaded.
-**
+** Open a database file.
+** 
 ** zFilename is the name of the database file.  If zFilename is NULL
 ** a new database with a random name is created.  This randomly named
 ** database file will be deleted when sqlite3BtreeClose() is called.