aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-03-29 00:15:54 +0000
committerdrh <drh@noemail.net>2009-03-29 00:15:54 +0000
commite3e2ae4a6f6afb8c9fd5ed492926e617efaba06e (patch)
tree4cd9dc63c7b7f12f125e9a3e6f74ec1212e2471f /src
parent75572e9de9e38820d516fa8e8762d69c61c55343 (diff)
downloadsqlite-e3e2ae4a6f6afb8c9fd5ed492926e617efaba06e.tar.gz
sqlite-e3e2ae4a6f6afb8c9fd5ed492926e617efaba06e.zip
Turn off the debugging macros in where.c - left on by mistake in the
previous check-in. (CVS 6404) FossilOrigin-Name: b601a57582051184baa37b807b1e18db93313e13
Diffstat (limited to 'src')
-rw-r--r--src/where.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/where.c b/src/where.c
index c2e8e1af5..1cd9902fd 100644
--- a/src/where.c
+++ b/src/where.c
@@ -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)