From: drh Date: Tue, 1 Oct 2013 20:29:30 +0000 (+0000) Subject: Bring some file format comments in btreeInt.h up to date. X-Git-Tag: version-3.8.1~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e75fb0614639fe7a1c725df27d63aa640679d3cd;p=thirdparty%2Fsqlite.git Bring some file format comments in btreeInt.h up to date. FossilOrigin-Name: 012d54d0d2b40888d08915082592ba75d70891c1 --- diff --git a/manifest b/manifest index 56e25c88c9..a90b2c12b9 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\scomments\sin\sthe\sfast_vacuum.c\sdemonstration\sprogram. -D 2013-10-01T19:36:15.392 +C Bring\ssome\sfile\sformat\scomments\sin\sbtreeInt.h\sup\sto\sdate. +D 2013-10-01T20:29:30.106 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 5e41da95d92656a5004b03d3576e8b226858a28e F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -165,7 +165,7 @@ F src/bitvec.c 19a4ba637bd85f8f63fc8c9bae5ade9fb05ec1cb F src/btmutex.c 976f45a12e37293e32cae0281b15a21d48a8aaa7 F src/btree.c 5ccbbaed7a32ba774306f610da4ab4f3e5348294 F src/btree.h bfe0e8c5759b4ec77b0d18390064a6ef3cdffaaf -F src/btreeInt.h 51cf220a9b9223354770883e93a859dc377aa27f +F src/btreeInt.h f038e818bfadf75afbd09819ed93c26a333d39e0 F src/build.c f63e8929c7f89c0074fbc74929bc946ea117b2f8 F src/callback.c f99a8957ba2adf369645fac0db09ad8adcf1caa2 F src/complete.c dc1d136c0feee03c2f7550bafc0d29075e36deac @@ -1118,7 +1118,7 @@ F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381 F tool/wherecosttest.c f407dc4c79786982a475261866a161cd007947ae F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff -P 2b60320d57a4638ebf97a2854527649c671d108e -R 4a43823b2504f04ed4e291198b91050a +P e0db7b38e1bc0edb1c3995cb23c46488aa6a0909 +R 2a738c8214c86a0fa4841687a9a6b019 U drh -Z 3db92aeadc570f4d1597ec242e901a49 +Z 1d3a10d5db55bb3286dbd9e3921936ff diff --git a/manifest.uuid b/manifest.uuid index f05230ea2d..7c054883ad 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -e0db7b38e1bc0edb1c3995cb23c46488aa6a0909 \ No newline at end of file +012d54d0d2b40888d08915082592ba75d70891c1 \ No newline at end of file diff --git a/src/btreeInt.h b/src/btreeInt.h index 60da24d90c..3ebdeb663e 100644 --- a/src/btreeInt.h +++ b/src/btreeInt.h @@ -56,13 +56,13 @@ ** ** OFFSET SIZE DESCRIPTION ** 0 16 Header string: "SQLite format 3\000" -** 16 2 Page size in bytes. +** 16 2 Page size in bytes. (1 means 65536) ** 18 1 File format write version ** 19 1 File format read version ** 20 1 Bytes of unused space at the end of each page -** 21 1 Max embedded payload fraction -** 22 1 Min embedded payload fraction -** 23 1 Min leaf payload fraction +** 21 1 Max embedded payload fraction (must be 64) +** 22 1 Min embedded payload fraction (must be 32) +** 23 1 Min leaf payload fraction (must be 32) ** 24 4 File change counter ** 28 4 Reserved for future use ** 32 4 First freelist page @@ -76,9 +76,10 @@ ** 56 4 1=UTF-8 2=UTF16le 3=UTF16be ** 60 4 User version ** 64 4 Incremental vacuum mode -** 68 4 unused -** 72 4 unused -** 76 4 unused +** 68 4 Application-ID +** 72 20 unused +** 92 4 The version-valid-for number +** 96 4 SQLITE_VERSION_NUMBER ** ** All of the integer values are big-endian (most significant byte first). **