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/select.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/select.c')
-rw-r--r-- | src/select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select.c b/src/select.c index 077c2bb0c..7c89ef009 100644 --- a/src/select.c +++ b/src/select.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle SELECT statements in SQLite. ** -** $Id: select.c,v 1.332 2007/04/01 23:49:52 drh Exp $ +** $Id: select.c,v 1.333 2007/04/06 01:04:40 drh Exp $ */ #include "sqliteInt.h" @@ -3297,7 +3297,7 @@ select_end: return rc; } -#if defined(SQLITE_TEST) || defined(SQLITE_DEBUG) +#if defined(SQLITE_DEBUG) /* ******************************************************************************* ** The following code is used for testing and debugging only. The code |