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:
12
manifest
12
manifest
@@ -1,5 +1,5 @@
|
|||||||
C Improvements\sto\scost\sestimation\sfor\sevaluating\sthe\sIN\soperator.\nTicket\s#3757.\s(CVS\s6403)
|
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:13:03
|
D 2009-03-29T00:15:54
|
||||||
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
||||||
F Makefile.in 583e87706abc3026960ed759aff6371faf84c211
|
F Makefile.in 583e87706abc3026960ed759aff6371faf84c211
|
||||||
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
||||||
@@ -209,7 +209,7 @@ F src/vdbeblob.c e67757450ae8581a8b354d9d7e467e41502dfe38
|
|||||||
F src/vdbemem.c 38615b5d4b1b3b5a1221a5623578e5e3864e4888
|
F src/vdbemem.c 38615b5d4b1b3b5a1221a5623578e5e3864e4888
|
||||||
F src/vtab.c f1aba5a6dc1f83b97a39fbbc58ff8cbc76311347
|
F src/vtab.c f1aba5a6dc1f83b97a39fbbc58ff8cbc76311347
|
||||||
F src/walker.c 42bd3f00ca2ef5ae842304ec0d59903ef051412d
|
F src/walker.c 42bd3f00ca2ef5ae842304ec0d59903ef051412d
|
||||||
F src/where.c 72b84f31a0bed42c665fb922b74e9aea5ae3ced2
|
F src/where.c 5a421d7265c79dc21c010e3218fd3abd448ec297
|
||||||
F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
|
F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
|
||||||
F test/alias.test 597662c5d777a122f9a3df0047ea5c5bd383a911
|
F test/alias.test 597662c5d777a122f9a3df0047ea5c5bd383a911
|
||||||
F test/all.test 14165b3e32715b700b5f0cbf8f6e3833dda0be45
|
F test/all.test 14165b3e32715b700b5f0cbf8f6e3833dda0be45
|
||||||
@@ -711,7 +711,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
|
|||||||
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
||||||
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
||||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||||
P 2e7d3cc9f04de1fe7ef95cd5736dbc409c209cef
|
P 0c438e813c411e8f9e92d6c7405fccb7a36e110a
|
||||||
R f4372d788a5fa3a6a07058dbb62c2eb3
|
R 3dffa6b92b193d1bfe88a15490bd2da5
|
||||||
U drh
|
U drh
|
||||||
Z 1bf6a0cf4ef6100a42ff75750d967094
|
Z b97ea69454df145d98480d67357072fb
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
0c438e813c411e8f9e92d6c7405fccb7a36e110a
|
b601a57582051184baa37b807b1e18db93313e13
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
** so is applicable. Because this module is responsible for selecting
|
** so is applicable. Because this module is responsible for selecting
|
||||||
** indices, you might also think of this module as the "query optimizer".
|
** 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"
|
#include "sqliteInt.h"
|
||||||
|
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
#if defined(SQLITE_TEST) || defined(SQLITE_DEBUG)
|
#if defined(SQLITE_TEST) || defined(SQLITE_DEBUG)
|
||||||
int sqlite3WhereTrace = 0;
|
int sqlite3WhereTrace = 0;
|
||||||
#endif
|
#endif
|
||||||
#if 1
|
#if 0
|
||||||
# define WHERETRACE(X) if(sqlite3WhereTrace) sqlite3DebugPrintf X
|
# define WHERETRACE(X) if(sqlite3WhereTrace) sqlite3DebugPrintf X
|
||||||
#else
|
#else
|
||||||
# define WHERETRACE(X)
|
# define WHERETRACE(X)
|
||||||
|
|||||||
Reference in New Issue
Block a user