Fix a couple of typos in comments in analyze.c.

FossilOrigin-Name: ae31dc67aa0637150f964de31a6da6f5797b462a
This commit is contained in:
dan 2011-08-15 12:02:21 +00:00
parent 4e50c5ec48
commit 23e7c4de7b
3 changed files with 10 additions and 10 deletions

View File

@ -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. C Fix\sa\scouple\sof\stypos\sin\scomments\sin\sanalyze.c.
D 2011-08-13T19:35:19.088 D 2011-08-15T12:02:21.660
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 1e6988b3c11dee9bd5edc0c804bd4468d74a9cdc F Makefile.in 1e6988b3c11dee9bd5edc0c804bd4468d74a9cdc
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@ -118,7 +118,7 @@ F sqlite.pc.in 42b7bf0d02e08b9e77734a47798d1a55a9e0716b
F sqlite3.1 6be1ad09113570e1fc8dcaff84c9b0b337db5ffc F sqlite3.1 6be1ad09113570e1fc8dcaff84c9b0b337db5ffc
F sqlite3.pc.in ae6f59a76e862f5c561eb32a380228a02afc3cad F sqlite3.pc.in ae6f59a76e862f5c561eb32a380228a02afc3cad
F src/alter.c ac80a0f31189f8b4a524ebf661e47e84536ee7f5 F src/alter.c ac80a0f31189f8b4a524ebf661e47e84536ee7f5
F src/analyze.c c04d95f4dc82b94250c4053ca36cc52b42f257ea F src/analyze.c 8a41063db56d2fe4735a1ae4dd556b37df1702e1
F src/attach.c 12c6957996908edc31c96d7c68d4942c2474405f F src/attach.c 12c6957996908edc31c96d7c68d4942c2474405f
F src/auth.c 523da7fb4979469955d822ff9298352d6b31de34 F src/auth.c 523da7fb4979469955d822ff9298352d6b31de34
F src/backup.c 986c15232757f2873dff35ee3b35cbf935fc573c F src/backup.c 986c15232757f2873dff35ee3b35cbf935fc573c
@ -958,7 +958,7 @@ F tool/symbols.sh caaf6ccc7300fd43353318b44524853e222557d5
F tool/tostr.awk 11760e1b94a5d3dcd42378f3cc18544c06cfa576 F tool/tostr.awk 11760e1b94a5d3dcd42378f3cc18544c06cfa576
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
F tool/warnings.sh 2ebae31e1eb352696f3c2f7706a34c084b28c262 F tool/warnings.sh 2ebae31e1eb352696f3c2f7706a34c084b28c262
P 1dcd24283e6c1cc638eb9ffac434046447f88769 P 89b2f70884cad0abdf4c66cb64ecddb2820ded74
R d1b65b54090c71db8593e348e48cfb27 R 9884d3dd8105ab98ebe71de1c72e2a2b
U drh U dan
Z 11276de2d321825346f710e3928eda70 Z b401be2988daefedc016cbb2d3ab24a6

View File

@ -1 +1 @@
89b2f70884cad0abdf4c66cb64ecddb2820ded74 ae31dc67aa0637150f964de31a6da6f5797b462a

View File

@ -65,7 +65,7 @@
** the index belongs. There are usually 10 rows in the sqlite_stat2 ** the index belongs. There are usually 10 rows in the sqlite_stat2
** table for each index. ** 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 ** 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 ** 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. ** (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 ** columns which hold the approximate number of rows in the table that
** exactly match the sample, the approximate number of rows with values ** 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, 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 ** from one table to the next; the sample count does not have to be
** exactly 10 as it is with sqlite_stat2. ** exactly 10 as it is with sqlite_stat2.
** **