]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Turn off the debugging macros in where.c - left on by mistake in the
authordrh <drh@noemail.net>
Sun, 29 Mar 2009 00:15:54 +0000 (00:15 +0000)
committerdrh <drh@noemail.net>
Sun, 29 Mar 2009 00:15:54 +0000 (00:15 +0000)
previous check-in. (CVS 6404)

FossilOrigin-Name: b601a57582051184baa37b807b1e18db93313e13

manifest
manifest.uuid
src/where.c

index 114c5b6c22bbf0788b1f2ea1b906949c1a12c754..6542dd4abae7831ee65da5cc9348b5050c9f0478 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Improvements\sto\scost\sestimation\sfor\sevaluating\sthe\sIN\soperator.\nTicket\s#3757.\s(CVS\s6403)
-D 2009-03-29T00:13:03
+C Turn\soff\sthe\sdebugging\smacros\sin\swhere.c\s-\sleft\son\sby\smistake\sin\sthe\nprevious\scheck-in.\s(CVS\s6404)
+D 2009-03-29T00:15:54
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 583e87706abc3026960ed759aff6371faf84c211
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -209,7 +209,7 @@ F src/vdbeblob.c e67757450ae8581a8b354d9d7e467e41502dfe38
 F src/vdbemem.c 38615b5d4b1b3b5a1221a5623578e5e3864e4888
 F src/vtab.c f1aba5a6dc1f83b97a39fbbc58ff8cbc76311347
 F src/walker.c 42bd3f00ca2ef5ae842304ec0d59903ef051412d
-F src/where.c 72b84f31a0bed42c665fb922b74e9aea5ae3ced2
+F src/where.c 5a421d7265c79dc21c010e3218fd3abd448ec297
 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
 F test/alias.test 597662c5d777a122f9a3df0047ea5c5bd383a911
 F test/all.test 14165b3e32715b700b5f0cbf8f6e3833dda0be45
@@ -711,7 +711,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 2e7d3cc9f04de1fe7ef95cd5736dbc409c209cef
-R f4372d788a5fa3a6a07058dbb62c2eb3
+P 0c438e813c411e8f9e92d6c7405fccb7a36e110a
+R 3dffa6b92b193d1bfe88a15490bd2da5
 U drh
-Z 1bf6a0cf4ef6100a42ff75750d967094
+Z b97ea69454df145d98480d67357072fb
index 7c1ae3564654e6a5ffe4a4f06c04d023c5d9b843..64341d9d08408cc939f490d31db7e7ccc961fc88 100644 (file)
@@ -1 +1 @@
-0c438e813c411e8f9e92d6c7405fccb7a36e110a
\ No newline at end of file
+b601a57582051184baa37b807b1e18db93313e13
\ No newline at end of file
index c2e8e1af5b7a23da2f2aad5c813709fd25b62938..1cd9902fd995ad7bc492d9d1f9851efa544e3f43 100644 (file)
@@ -16,7 +16,7 @@
 ** so is applicable.  Because this module is responsible for selecting
 ** indices, you might also think of this module as the "query optimizer".
 **
-** $Id: where.c,v 1.378 2009/03/29 00:13:03 drh Exp $
+** $Id: where.c,v 1.379 2009/03/29 00:15:54 drh Exp $
 */
 #include "sqliteInt.h"
 
@@ -26,7 +26,7 @@
 #if defined(SQLITE_TEST) || defined(SQLITE_DEBUG)
 int sqlite3WhereTrace = 0;
 #endif
-#if 1
+#if 0
 # define WHERETRACE(X)  if(sqlite3WhereTrace) sqlite3DebugPrintf X
 #else
 # define WHERETRACE(X)