diff options
author | drh <drh@noemail.net> | 2007-04-06 01:04:39 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-04-06 01:04:39 +0000 |
commit | 77a2a5e73c5aa192514b467557f24ffd1792ca1c (patch) | |
tree | ec7dfe046b259f656813109337da1ed4bd92ff76 /src/where.c | |
parent | 8c4d3a6b42342f9b4b3757d520e1a00fd00abda1 (diff) | |
download | sqlite-77a2a5e73c5aa192514b467557f24ffd1792ca1c.tar.gz sqlite-77a2a5e73c5aa192514b467557f24ffd1792ca1c.zip |
Changes to increase test coverage. (CVS 3819)
FossilOrigin-Name: fd4da6b13499af2397d52cb0f25f8ff6f2192431
Diffstat (limited to 'src/where.c')
-rw-r--r-- | src/where.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/where.c b/src/where.c index b5a958176..3327e81c3 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.245 2007/03/31 01:34:45 drh Exp $ +** $Id: where.c,v 1.246 2007/04/06 01:04:40 drh Exp $ */ #include "sqliteInt.h" @@ -1138,8 +1138,7 @@ static double estLog(double N){ ** SQLITE_TEST or SQLITE_DEBUG are defined, then these routines ** are no-ops. */ -#if !defined(SQLITE_OMIT_VIRTUALTABLE) && \ - (defined(SQLITE_TEST) || defined(SQLITE_DEBUG)) +#if !defined(SQLITE_OMIT_VIRTUALTABLE) && defined(SQLITE_DEBUG) static void TRACE_IDX_INPUTS(sqlite3_index_info *p){ int i; if( !sqlite3_where_trace ) return; |