]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Update pager requirements to accound for the ZIPVFS extension.
authordrh <drh@noemail.net>
Mon, 10 Jan 2011 21:01:10 +0000 (21:01 +0000)
committerdrh <drh@noemail.net>
Mon, 10 Jan 2011 21:01:10 +0000 (21:01 +0000)
FossilOrigin-Name: d94e59b514c16c5f7ea506e0af1c6e2ffecc13be

manifest
manifest.uuid
src/sqlite.h.in

index 904f168e948e907d718689996866dc1d8d104d94..aeb632010c88396b809a60df1cda84d25c1fc167 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,8 +1,8 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-C Reorder\sthe\sfields\sin\sprivate\sstructures\sin\san\seffort\sto\sreduce\salignment\ngaps\sand\sthus\smake\sthe\sstructures\ssmaller,\sand\sto\sput\sfrequently\saccessed\nfields\sfirst.\s\sAlso\supdate\ssome\sobsolete\scomments.\s\sValgrind\sshows\sa\svery\nslight\sperformance\simprovement.
-D 2011-01-07T02:50:40
+C Update\spager\srequirements\sto\saccound\sfor\sthe\sZIPVFS\sextension.
+D 2011-01-10T21:01:10.514
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in de6498556d536ae60bb8bb10e8c1ba011448658c
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -179,7 +179,7 @@ F src/resolve.c 1c0f32b64f8e3f555fe1f732f9d6f501a7f05706
 F src/rowset.c 69afa95a97c524ba6faf3805e717b5b7ae85a697
 F src/select.c 8a7ba246b0b4bb45df7fbc52681728a0e3deaaa7
 F src/shell.c 83c6f0cc5a79a081c7b9ddfe4f557b47e0bad976
-F src/sqlite.h.in 8ee5a78674f9b78a59a0313197a46892204e3407
+F src/sqlite.h.in f48408b86c0713bc074b16c83543868688b0e18d
 F src/sqlite3ext.h c90bd5507099f62043832d73f6425d8d5c5da754
 F src/sqliteInt.h 3ef5fc89a4c9755a08a68de107493785a284e27c
 F src/sqliteLimit.h a17dcd3fb775d63b64a43a55c54cb282f9726f44
@@ -898,14 +898,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
-P cda5eab18f48d3836dfd3e1f8c76e5f83b43485f
-R b6bb91d8008f3bd40fbfcc333ed6ae8d
+P 378a1d13af4a6f4cb2bfa65944b3b0d444b9f21c
+R 9ba476b75f53d677656fa985b1b64795
 U drh
-Z b9332de9f4f0b427c676c0d723aec735
+Z b1419bbb0387a7a1916f12cb7cb5d1cc
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.6 (GNU/Linux)
 
-iD8DBQFNJn+EoxKgR168RlERArozAJ488YVf31pNpQTakJkJq0sV2ZJnxQCfW6sh
-hZ8upDwsMRzRPHR7Truah5Q=
-=G69s
+iD8DBQFNK3OZoxKgR168RlERAkacAKCMhl6ZxRLBUNTVdjwpBabO5xt6DACdFjqx
+fy4uPWEx1WyrV/pu6K1mVzM=
+=JPWF
 -----END PGP SIGNATURE-----
index 0814d081fb561125aa8f12e956d9df7c18e3dde5..e125cf8057c92fa9f57f16bcf8d26d7b913e65cf 100644 (file)
@@ -1 +1 @@
-378a1d13af4a6f4cb2bfa65944b3b0d444b9f21c
\ No newline at end of file
+d94e59b514c16c5f7ea506e0af1c6e2ffecc13be
\ No newline at end of file
index 5aaeb4a10fa14b2cb20966effee7d4aa398135fc..0f05a09a33d262a642b80db0a348dd21d9e00d5f 100644 (file)
@@ -5692,11 +5692,13 @@ typedef struct sqlite3_pcache sqlite3_pcache;
 ** first parameter, szPage, is the size in bytes of the pages that must
 ** be allocated by the cache.  ^szPage will not be a power of two.  ^szPage
 ** will the page size of the database file that is to be cached plus an
-** increment (here called "R") of about 100 or 200.  SQLite will use the
+** increment (here called "R") of less than 250.  SQLite will use the
 ** extra R bytes on each page to store metadata about the underlying
 ** database page on disk.  The value of R depends
 ** on the SQLite version, the target platform, and how SQLite was compiled.
-** ^R is constant for a particular build of SQLite.  ^The second argument to
+** ^(R is constant for a particular build of SQLite. Except, there are two
+** distinct values of R when SQLite is compiled with the proprietary
+** ZIPVFS extension.)^  ^The second argument to
 ** xCreate(), bPurgeable, is true if the cache being created will
 ** be used to cache database pages of a file stored on disk, or
 ** false if it is used for an in-memory database. The cache implementation