]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a couple of typos in a comment in analyze.c. No code changes.
authordan <dan@noemail.net>
Fri, 9 Aug 2013 19:04:07 +0000 (19:04 +0000)
committerdan <dan@noemail.net>
Fri, 9 Aug 2013 19:04:07 +0000 (19:04 +0000)
FossilOrigin-Name: 5bcccb93df98f5dfee0ea4d797b07fe0257258a9

manifest
manifest.uuid
src/analyze.c

index 086cfdf3f26df4f78d14d84548ce552473dcec49..004ced59a3c1f3f5f224bc019f4ffcb8201a84bf 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Update\sthe\sheader\scomment\son\sanalyze.c\sto\sdescribe\sthe\ssqlite_stat4\stable\nformat.
-D 2013-08-09T14:07:55.264
+C Fix\sa\scouple\sof\stypos\sin\sa\scomment\sin\sanalyze.c.\sNo\scode\schanges.
+D 2013-08-09T19:04:07.214
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 5e41da95d92656a5004b03d3576e8b226858a28e
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -157,7 +157,7 @@ F sqlite.pc.in 42b7bf0d02e08b9e77734a47798d1a55a9e0716b
 F sqlite3.1 6be1ad09113570e1fc8dcaff84c9b0b337db5ffc
 F sqlite3.pc.in ae6f59a76e862f5c561eb32a380228a02afc3cad
 F src/alter.c 2af0330bb1b601af7a7789bf7229675fd772a083
-F src/analyze.c 9fced5c126f9655d8cea2be534da6caef93f203c
+F src/analyze.c aba0749f8900cef07bb05324b624fd4eb19bf7c6
 F src/attach.c 1816f5a9eea8d2010fc2b22b44f0f63eb3a62704
 F src/auth.c 523da7fb4979469955d822ff9298352d6b31de34
 F src/backup.c 43b348822db3e4cef48b2ae5a445fbeb6c73a165
@@ -1106,7 +1106,7 @@ F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
 F tool/wherecosttest.c f407dc4c79786982a475261866a161cd007947ae
 F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
-P 9228aaf54dd2700c4f460f94f9c2309407578983
-R 8f8b5382a2066b3e84011ccbfba51880
-U drh
-Z c6ed6d4032cb2df263d6c33284a68607
+P 4d97809d6b29809f12d753043bda1976bdb1bd3b
+R b0844c4d270fc066470bde75f744fcb8
+U dan
+Z 863ef3ffe27da5a538c7139e648347ba
index 611d0fe3588931faa9b177e39deceae29abc1e9d..0857e7e7bf837eab2b7605c43534b24c1a3d5db7 100644 (file)
@@ -1 +1 @@
-4d97809d6b29809f12d753043bda1976bdb1bd3b
\ No newline at end of file
+5bcccb93df98f5dfee0ea4d797b07fe0257258a9
\ No newline at end of file
index bf418c6e488c1bf70b35efe02f61adcf4514559a..7ce3dceb81513ef35a9516f01d625936a35b3e58 100644 (file)
 ** of the INTEGER PRIMARY KEY.  The sample column is a blob which is the
 ** binary encoding of a key from the index, with the trailing rowid
 ** omitted.  The nEq column is a list of integers.  The first integer
-** is the approximate number of entires in the index whose left-most 
-** column exactly matches the left-most column the sample.  The second
-** integer in nEq is the approximate number of entires in the index where
+** is the approximate number of entries in the index whose left-most 
+** column exactly matches the left-most column of the sample.  The second
+** integer in nEq is the approximate number of entries in the index where
 ** the first two columns match the first two columns of the sample.
-** And so forth.  nLt is another list of integer that show the approximate
-** number of entires that are strictly less than the sample.  The first
+** And so forth.  nLt is another list of integers that show the approximate
+** number of entries that are strictly less than the sample.  The first
 ** integer in nLt contains the number of entries in the index where the
 ** left-most column is less than the left-most column of the sample.
 ** The K-th integer in the nLt entry is the number of index entries 
 ** sample.
 **
 ** There can be an arbitrary number of sqlite_stat4 entries per index.
-** The ANALYZE command will typically generate sqlite_stat3 tables
+** The ANALYZE command will typically generate sqlite_stat4 tables
 ** that contain between 10 and 40 samples which are distributed across
 ** the key space, though not uniformly, and which include samples with
 ** large nEq values.