Update comments and documentation to give the true maximum page size as 32K,

not 64K as was previously (and erroneously) reported.  Ticket #1194. (CVS 2437)

FossilOrigin-Name: 58dd436b6572d38ea67960b8d08a0ca4359602f0
This commit is contained in:
drh
2005-03-31 21:02:45 +00:00
parent f4f8fd51e4
commit 4fb90f2bff
5 changed files with 24 additions and 20 deletions
+3 -2
View File
@@ -1,7 +1,7 @@
#
# 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}
@@ -203,7 +203,8 @@ puts {
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>
+2 -2
View File
@@ -67,7 +67,7 @@ overflow pages. Traditional B-trees are still used for indices.</p>
<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>
@@ -290,4 +290,4 @@ supporting and embracing great Open-Source Software.
}
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 $}