From: mistachkin Date: Sat, 6 Sep 2014 02:00:41 +0000 (+0000) Subject: Fix a couple of typos in comments. No changes to code. X-Git-Tag: version-3.8.7~125 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6b9da128565cfbaf61f5ded79bc71ec25443828b;p=thirdparty%2Fsqlite.git Fix a couple of typos in comments. No changes to code. FossilOrigin-Name: a758465e3cfa7e0cb8749d097cd6fb5f86b60955 --- diff --git a/manifest b/manifest index cf1f0a6433..8921cbf2bc 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Query\splanner\sheuristic\supdate:\nWhen\sdoing\sa\sfull\stable\sscan\son\sa\stable\sthat\shas\san\sequality\sconstraint\son\nan\sunindexed\scolumn,\sdo\snot\sallow\sthe\sestimated\snumber\sof\soutput\srows\sto\nbe\sgreater\sthan\shalf\sthe\stotal\snumber\sof\srows\sin\sthe\stable. -D 2014-09-06T01:35:57.122 +C Fix\sa\scouple\sof\stypos\sin\scomments.\s\sNo\schanges\sto\scode. +D 2014-09-06T02:00:41.865 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in cf57f673d77606ab0f2d9627ca52a9ba1464146a F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -298,7 +298,7 @@ F src/vtab.c 019dbfd0406a7447c990e1f7bd1dfcdb8895697f F src/wal.c 264df50a1b33124130b23180ded2e2c5663c652a F src/wal.h df01efe09c5cb8c8e391ff1715cca294f89668a4 F src/walker.c 11edb74d587bc87b33ca96a5173e3ec1b8389e45 -F src/where.c 738213f25bc74c0a7cc5427712c1ac7537270a3d +F src/where.c 27af96780ded74196df231849b0584db5dc67104 F src/whereInt.h 923820bee9726033a501a08d2fc69b9c1ee4feb3 F test/8_3_names.test ebbb5cd36741350040fd28b432ceadf495be25b2 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2 @@ -1125,7 +1125,7 @@ F test/whereF.test 5b2ba0dbe8074aa13e416b37c753991f0a2492d7 F test/whereG.test 69f5ec4b15760a8c860f80e2d55525669390aab3 F test/whereH.test e4b07f7a3c2f5d31195cd33710054c78667573b2 F test/whereI.test 1d89199697919d4930be05a71e7fe620f114e622 -F test/whereJ.test 1c35169106be343b7aa1a2c1338322462f27901a +F test/whereJ.test 63599653dfefe4e74ebb358db753417fe0aa8a49 F test/wherelimit.test 5e9fd41e79bb2b2d588ed999d641d9c965619b31 F test/wild001.test bca33f499866f04c24510d74baf1e578d4e44b1c F test/win32heap.test ea19770974795cff26e11575e12d422dbd16893c @@ -1193,7 +1193,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P 733119067757814609a9cea6b975818607bee4e3 -R bfd7d8b21e261616a30a072bf666f263 -U drh -Z 6641f77f6592cd795a1a1b9c2011a8f5 +P 73954f93c4c6f880c6e01d0d130e3fed40fd4106 +R fbb4555bc7385b94054e7551d7f50581 +U mistachkin +Z 680a54f7aef088a3bc667976a8b39ee7 diff --git a/manifest.uuid b/manifest.uuid index a84ea01b2d..08d7f777bc 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -73954f93c4c6f880c6e01d0d130e3fed40fd4106 \ No newline at end of file +a758465e3cfa7e0cb8749d097cd6fb5f86b60955 \ No newline at end of file diff --git a/src/where.c b/src/where.c index 49b16b345d..921baa29eb 100644 --- a/src/where.c +++ b/src/where.c @@ -4229,7 +4229,7 @@ static void whereLoopOutputAdjust( WhereTerm *pTerm, *pX; Bitmask notAllowed = ~(pLoop->prereq|pLoop->maskSelf); int i, j; - int nEq = 0; /* Number of = constraints not within likely()/unlike() */ + int nEq = 0; /* Number of = constraints not within likely()/unlikely() */ for(i=pWC->nTerm, pTerm=pWC->a; i>0; i--, pTerm++){ if( (pTerm->wtFlags & TERM_VIRTUAL)!=0 ) break; diff --git a/test/whereJ.test b/test/whereJ.test index fbc2e57a3f..8431c3a4b0 100644 --- a/test/whereJ.test +++ b/test/whereJ.test @@ -418,7 +418,7 @@ do_eqp_test 3.5 { ########################################################################################### -# Reset the database and setup for a test case derived from an actual SQLite users +# Reset the database and setup for a test case derived from actual SQLite users # db close sqlite3 db test.db @@ -618,7 +618,7 @@ do_execsql_test 4.2 { ANALYZE sqlite_master; } {} -# The following query should do a ful ltable scan of cx in the outer loop. +# The following query should do a full table scan of cx in the outer loop. # It is not correct to search table px using indx p_pt in the outer loop # with cx in the middle loop. Test case from Bloomberg on 2014-09-05. #