]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a couple of typos in comments in analyze.c.
authordan <dan@noemail.net>
Mon, 15 Aug 2011 12:02:21 +0000 (12:02 +0000)
committerdan <dan@noemail.net>
Mon, 15 Aug 2011 12:02:21 +0000 (12:02 +0000)
FossilOrigin-Name: ae31dc67aa0637150f964de31a6da6f5797b462a

manifest
manifest.uuid
src/analyze.c

index 635de7d9bffe137716063c3ddf4957e9015db409..4ef9e851b528f78778bb1a1b034b9c037681a6f1 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Further\stesting\sand\sbug\sfixing\sfor\ssqlite_stat3.\s\sAdded\sthe\sIndex.avgEq\nfield\sto\sindex\sstatistics.\s\sFixed\sseveral\sproblems\sin\sthe\squery\splanner\nassociated\swith\sstat3.
-D 2011-08-13T19:35:19.088
+C Fix\sa\scouple\sof\stypos\sin\scomments\sin\sanalyze.c.
+D 2011-08-15T12:02:21.660
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 1e6988b3c11dee9bd5edc0c804bd4468d74a9cdc
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -118,7 +118,7 @@ F sqlite.pc.in 42b7bf0d02e08b9e77734a47798d1a55a9e0716b
 F sqlite3.1 6be1ad09113570e1fc8dcaff84c9b0b337db5ffc
 F sqlite3.pc.in ae6f59a76e862f5c561eb32a380228a02afc3cad
 F src/alter.c ac80a0f31189f8b4a524ebf661e47e84536ee7f5
-F src/analyze.c c04d95f4dc82b94250c4053ca36cc52b42f257ea
+F src/analyze.c 8a41063db56d2fe4735a1ae4dd556b37df1702e1
 F src/attach.c 12c6957996908edc31c96d7c68d4942c2474405f
 F src/auth.c 523da7fb4979469955d822ff9298352d6b31de34
 F src/backup.c 986c15232757f2873dff35ee3b35cbf935fc573c
@@ -958,7 +958,7 @@ F tool/symbols.sh caaf6ccc7300fd43353318b44524853e222557d5
 F tool/tostr.awk 11760e1b94a5d3dcd42378f3cc18544c06cfa576
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
 F tool/warnings.sh 2ebae31e1eb352696f3c2f7706a34c084b28c262
-P 1dcd24283e6c1cc638eb9ffac434046447f88769
-R d1b65b54090c71db8593e348e48cfb27
-U drh
-Z 11276de2d321825346f710e3928eda70
+P 89b2f70884cad0abdf4c66cb64ecddb2820ded74
+R 9884d3dd8105ab98ebe71de1c72e2a2b
+U dan
+Z b401be2988daefedc016cbb2d3ab24a6
index 12a95a47e2fe1688055a3beb1b77e31362e6e1ce..5d52dcb26d29a89f23c6a2b901c8d0ba26b7be87 100644 (file)
@@ -1 +1 @@
-89b2f70884cad0abdf4c66cb64ecddb2820ded74
\ No newline at end of file
+ae31dc67aa0637150f964de31a6da6f5797b462a
\ No newline at end of file
index f67e26e8c1b04b088825a55eb8cdbb20f7606318..0ba9b2bfaeb71eb0928f6307e2fd05771beb1d4c 100644 (file)
@@ -65,7 +65,7 @@
 ** the index belongs.  There are usually 10 rows in the sqlite_stat2
 ** table for each index.
 **
-** The sqlite_stat2 entires for an index that have sampleno between 0 and 9
+** The sqlite_stat2 entries for an index that have sampleno between 0 and 9
 ** inclusive are samples of the left-most key value in the index taken at
 ** evenly spaced points along the index.  Let the number of samples be S
 ** (10 in the standard build) and let C be the number of rows in the index.
@@ -92,7 +92,7 @@
 ** columns which hold the approximate number of rows in the table that
 ** exactly match the sample, the approximate number of rows with values
 ** less than the sample, and the approximate number of distinct key values
-** less than the sample, respectively.  (3) The number of samples can very 
+** less than the sample, respectively.  (3) The number of samples can vary 
 ** from one table to the next; the sample count does not have to be 
 ** exactly 10 as it is with sqlite_stat2.
 **