1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Always enable WHERE-tracing on a test build.

Oops - accidentally included a debugging change to pragma.c in 
this check-in.  The real fix for the pragma problem is in the
following checking. (CVS 6458)

FossilOrigin-Name: 567cf90b038a37da93d02954ef8f9f435dcc9a38
This commit is contained in:
drh
2009-04-07 00:43:28 +00:00
parent 577d674f1a
commit 081a166489
4 changed files with 12 additions and 12 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to implement the PRAGMA command.
**
** $Id: pragma.c,v 1.206 2009/04/04 16:02:32 drh Exp $
** $Id: pragma.c,v 1.207 2009/04/07 00:43:28 drh Exp $
*/
#include "sqliteInt.h"
@@ -152,7 +152,7 @@ static void returnSingleInt(Parse *pParse, const char *zLabel, i64 value){
memcpy(pI64, &value, sizeof(value));
}
sqlite3VdbeAddOp4(v, OP_Int64, 0, mem, 0, (char*)pI64, P4_INT64);
if( pParse->explain==0 ){
if( /*pParse->explain==0*/ 1 ){
sqlite3VdbeSetNumCols(v, 1);
sqlite3VdbeSetColName(v, 0, COLNAME_NAME, zLabel, SQLITE_STATIC);
}