1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix a comment. (CVS 1938)

FossilOrigin-Name: af44ddeea110576bf9c475b5e6e3540ee50c5edf
This commit is contained in:
drh
2004-09-03 23:32:18 +00:00
parent 2e38c32b67
commit ad3e010547
3 changed files with 10 additions and 14 deletions

View File

@@ -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) C Fix\sa\scomment.\s(CVS\s1938)
D 2004-09-03T18:38:45 D 2004-09-03T23:32:19
F Makefile.in 65a7c43fcaf9a710d62f120b11b6e435eeb4a450 F Makefile.in 65a7c43fcaf9a710d62f120b11b6e435eeb4a450
F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457 F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -28,7 +28,7 @@ F sqlite3.def 84215604aa7b547d75e0f7b437966e7ad18fa8b2
F sqlite3.pc.in 985b9bf34192a549d7d370e0f0b6b34a4f61369a F sqlite3.pc.in 985b9bf34192a549d7d370e0f0b6b34a4f61369a
F src/attach.c 0bd4f11da6999665da30625665a4096ba7898de6 F src/attach.c 0bd4f11da6999665da30625665a4096ba7898de6
F src/auth.c 60db23b98bb94c8b0178180faaf49dc116674217 F src/auth.c 60db23b98bb94c8b0178180faaf49dc116674217
F src/btree.c 91a6f5e90c6e7a15cc9af4257866a03c1614442e F src/btree.c fd5e339c83459ea42fb055f0e59c0a682b0da422
F src/btree.h 94dfec0a1722d33359b23e7e310f2b64ffedf029 F src/btree.h 94dfec0a1722d33359b23e7e310f2b64ffedf029
F src/build.c 35275654d9c5ce6c1c0c78e391f85e6915a8a66b F src/build.c 35275654d9c5ce6c1c0c78e391f85e6915a8a66b
F src/date.c edff4aa851eeca8abbc737dc3933a2f0671156ce F src/date.c edff4aa851eeca8abbc737dc3933a2f0671156ce
@@ -248,7 +248,7 @@ F www/tclsqlite.tcl 560ecd6a916b320e59f2917317398f3d59b7cc25
F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9 F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0 F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4 F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
P 9e6645dd781cb8e422e371ca23766dc1b689481e P 4595292f936bdbec10734f42682824e91ff71d11
R f084bc97486f0a01c7a5a8e06138356c R a6a2c4ff901213b63bfaa0048bce9198
U drh U drh
Z 4d667560618f87c860d31b44d3368e4d Z c9eae4290234a644b3110522f8908fc1

View File

@@ -1 +1 @@
4595292f936bdbec10734f42682824e91ff71d11 af44ddeea110576bf9c475b5e6e3540ee50c5edf

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.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. ** 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
@@ -1014,12 +1014,8 @@ static void pageReinit(void *pData, int pageSize){
} }
/* /*
** Open a new database. ** Open a database file.
** **
** 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.
**
** zFilename is the name of the database file. If zFilename is NULL ** zFilename is the name of the database file. If zFilename is NULL
** a new database with a random name is created. This randomly named ** a new database with a random name is created. This randomly named
** database file will be deleted when sqlite3BtreeClose() is called. ** database file will be deleted when sqlite3BtreeClose() is called.