-C Make\ssure\sinteger\sprimary\skeys\slarger\sthan\s2^31\sare\shandled\nproperly.\s\sTicket\s#1188.\s(CVS\s2436)
-D 2005-03-31T18:40:05
+C Update\scomments\sand\sdocumentation\sto\sgive\sthe\strue\smaximum\spage\ssize\sas\s32K,\nnot\s64K\sas\swas\spreviously\s(and\serroneously)\sreported.\s\sTicket\s#1194.\s(CVS\s2437)
+D 2005-03-31T21:02:46
F Makefile.in 5c00d0037104de2a50ac7647a5f12769795957a3
F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
F src/os_win.c 2bbbe6fbb010763c3fa79d5e951afca9b138c6b5
F src/os_win.h 41a946bea10f61c158ce8645e7646b29d44f122b
F src/pager.c 95e24c9134a00613ca87b963a84ad62d85d5b979
-F src/pager.h 9a417a1e04737c227ebbba3bdf8597d6dd51513a
+F src/pager.h 94bb42704ae861036a3bf3bbbe04dd3f0c6a690d
F src/parse.y 1770b8673c652756b2dd5bcec16f0bf741e5e879
F src/pragma.c 845c8ab0ab7d09ed2115d3dfc859ba2364b365a7
F src/printf.c 3d20b21cfecadacecac3fb7274e746cb81d3d357
F www/omitted.tcl f1e57977299c3ed54fbae55e4b5ea6a64de39e19
F www/opcode.tcl 5bd68059416b223515a680d410a9f7cb6736485f
F www/optimizing.tcl f0b2538988d1bbad16cbfe63ec6e8f48c9eb04e5
-F www/pragma.tcl 20ea0674d96bfea23a9825fb5a6a2214ee258b17
+F www/pragma.tcl bf23f023a02a0125508d6ff67796b7057c7583fe
F www/quickstart.tcl 6f6f694b6139be2d967b1492eb9a6bdf7058aa60
F www/speed.tcl 656ed5be8cc9d536353e1a96927b925634a62933
F www/sqlite.tcl b51fd15f0531a54874de785a9efba323eecd5975
F www/support.tcl 3955da0fd82be68cc5c83d347c05095e80967051
F www/tclsqlite.tcl e73f8f8e5f20e8277619433f7970060ab01088fc
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
-F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
+F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b
-P c31ea6332f53d361be864554b83662d3fc0d52f7
-R a311b9d0ce53d2c52cd966b96ef532ff
+P 1d04c2ab299430959b8a193d4679cbc4c0be31a4
+R c50ec978eb0ab13d30afac8678728405
U drh
-Z 6c477f50c1882d01dcdfc519faad2371
+Z cf6d4f7038aa022ce629a64a04d78749
-1d04c2ab299430959b8a193d4679cbc4c0be31a4
\ No newline at end of file
+58dd436b6572d38ea67960b8d08a0ca4359602f0
\ No newline at end of file
** subsystem. The page cache subsystem reads and writes a file a page
** at a time and provides a journal for rollback.
**
-** @(#) $Id: pager.h,v 1.42 2005/03/21 04:04:03 danielk1977 Exp $
+** @(#) $Id: pager.h,v 1.43 2005/03/31 21:02:46 drh Exp $
*/
/*
# define SQLITE_DEFAULT_PAGE_SIZE 1024
#endif
-/* Maximum page size. The upper bound on this value is 65536 (a limit
-** imposed by the 2-byte size of cell array pointers.) The
-** maximum page size determines the amount of stack space allocated
-** by many of the routines in pager.c and btree.c On embedded architectures
-** or any machine where memory and especially stack memory is limited,
-** one may wish to chose a smaller value for the maximum page size.
+/* Maximum page size. The upper bound on this value is 32768. This a limit
+** imposed by necessity of storing the value in a 2-byte unsigned integer
+** and the fact that the page size must be a power of 2.
+**
+** This value is used to initialize certain arrays on the stack at
+** various places in the code. On embedded machines where stack space
+** is limited and the flexibility of having large pages is not needed,
+** it makes good sense to reduce the maximum page size to something more
+** reasonable, like 1024.
*/
#ifndef SQLITE_MAX_PAGE_SIZE
# define SQLITE_MAX_PAGE_SIZE 8192
#
# Run this Tcl script to generate the pragma.html file.
#
-set rcsid {$Id: pragma.tcl,v 1.12 2005/03/21 01:31:37 drh Exp $}
+set rcsid {$Id: pragma.tcl,v 1.13 2005/03/31 21:02:46 drh Exp $}
source common.tcl
header {Pragma statements supported by SQLite}
may only be set if the database has not yet been created. The page
size must be a power of two greater than or equal to 512 and less
than or equal to 8192. The upper limit may be modified by setting
- the value of macro SQLITE_MAX_PAGE_SIZE during compilation.
+ the value of macro SQLITE_MAX_PAGE_SIZE during compilation. The
+ maximum upper bound is 32768.
</p>
</li>
<p>
The new file format also supports variable pages sizes between 512 and
-65536 bytes. The size of a page is stored in the file header so the
+32768 bytes. The size of a page is stored in the file header so the
same library can read databases with different pages sizes, in theory,
though this feature has not yet been implemented in practice.
</p>
}
-footer {$Id: version3.tcl,v 1.4 2004/06/30 22:54:06 drh Exp $}
+footer {$Id: version3.tcl,v 1.5 2005/03/31 21:02:46 drh Exp $}