1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

fix a debugging issue (CVS 162)

FossilOrigin-Name: f0a5255d2657ddcba24353d6d94b0d9c579d8dec
This commit is contained in:
drh
2000-10-22 20:39:58 +00:00
parent ed5423d5ae
commit ccb2a3daf6
3 changed files with 10 additions and 8 deletions

View File

@ -27,7 +27,7 @@
** individual tokens and sends those tokens one-by-one over to the
** parser for analysis.
**
** $Id: tokenize.c,v 1.14 2000/10/16 22:06:42 drh Exp $
** $Id: tokenize.c,v 1.15 2000/10/22 20:39:59 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@ -320,7 +320,9 @@ int sqliteRunParser(Parse *pParse, char *zSql, char **pzErrMsg){
sqliteSetString(pzErrMsg, "out of memory", 0);
return 1;
}
#ifndef NDEBUG
sqliteParserTrace(trace, "parser: ");
#endif
while( nErr==0 && i>=0 && zSql[i]!=0 ){
int tokenType;