1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-16 23:02:26 +03:00

Turn off the debugging macros in where.c - left on by mistake in the

previous check-in. (CVS 6404)

FossilOrigin-Name: b601a57582051184baa37b807b1e18db93313e13
This commit is contained in:
drh
2009-03-29 00:15:54 +00:00
parent 75572e9de9
commit e3e2ae4a6f
3 changed files with 9 additions and 9 deletions

View 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)