]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a missing space in a "wheretrace" comment. No changes to production code.
authordrh <drh@noemail.net>
Tue, 17 Jun 2014 17:00:42 +0000 (17:00 +0000)
committerdrh <drh@noemail.net>
Tue, 17 Jun 2014 17:00:42 +0000 (17:00 +0000)
FossilOrigin-Name: b500f2a09721b49c95a69c47a0205bc2375af2cd

manifest
manifest.uuid
src/where.c

index fb571a7c971ecd16852a0291e83884a3d358bd7b..8cea868013c2d4d6cefd4e90b941c32dfba70556 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sthe\slikely()\sfunction\sfor\ssymmetry\swith\sunlikely().\s\sThe\slikely(X)\nfunction\smeans\sthe\ssame\sthing\sas\slikelihood(X,0.9375).
-D 2014-06-17T16:11:28.353
+C Fix\sa\smissing\sspace\sin\sa\s"wheretrace"\scomment.\s\sNo\schanges\sto\sproduction\scode.
+D 2014-06-17T17:00:42.928
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in ed5e4aae4799f724699d5509fac2977786414dbb
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -296,7 +296,7 @@ F src/vtab.c 21b932841e51ebd7d075e2d0ad1415dce8d2d5fd
 F src/wal.c 264df50a1b33124130b23180ded2e2c5663c652a
 F src/wal.h df01efe09c5cb8c8e391ff1715cca294f89668a4
 F src/walker.c 11edb74d587bc87b33ca96a5173e3ec1b8389e45
-F src/where.c cd3110c7dca304ecbdf2ed07b23205e90b10475b
+F src/where.c 7f59d3786a41ccb8d76148405f76c31658527c08
 F src/whereInt.h 929c1349b5355fd44f22cee5c14d72b3329c58a6
 F test/8_3_names.test ebbb5cd36741350040fd28b432ceadf495be25b2
 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
@@ -1178,7 +1178,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 1272fb8991b3888c72dcebf947415883d7727241
-R c1d0749541351617b104ca64007ba8f1
+P 38965484199153e3e5b999f5196c1d66e5296f60
+R 8d914acb455fa768c8bfdec56d9704e4
 U drh
-Z 26a05503f7dd3e6c9f856a3872db5b5a
+Z d423ee25f70180aacb18e67f6dbb4662
index 50d789e8ee872f423cdc45593e2c59e053abc616..0e6051ab6dc6adeb7ab2df5459fb3c5c4abc9b03 100644 (file)
@@ -1 +1 @@
-38965484199153e3e5b999f5196c1d66e5296f60
\ No newline at end of file
+b500f2a09721b49c95a69c47a0205bc2375af2cd
\ No newline at end of file
index 5fd4618bb12ec8a0fc2f8d9bb93f71ecbf48041f..1865871edad2bdba11cba11badcefbeb15a7acb0 100644 (file)
@@ -4053,7 +4053,7 @@ static int whereLoopInsert(WhereLoopBuilder *pBuilder, WhereLoop *pTemplate){
       *ppTail = pToDel->pNextLoop;
 #if WHERETRACE_ENABLED /* 0x8 */
       if( sqlite3WhereTrace & 0x8 ){
-        sqlite3DebugPrintf("ins-del: ");
+        sqlite3DebugPrintf("ins-del:  ");
         whereLoopPrint(pToDel, pBuilder->pWC);
       }
 #endif