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

Correctly handle column names and string constants in parentheses.

Fix for ticket #179. (CVS 770)

FossilOrigin-Name: 3b68aa25c451b7c09ece457ac2b70a9a5d93508a
This commit is contained in:
drh
2002-10-22 23:38:04 +00:00
parent e958bb4aef
commit 6977fea801
9 changed files with 106 additions and 120 deletions

View File

@@ -15,7 +15,7 @@
** individual tokens and sends those tokens one-by-one over to the
** parser for analysis.
**
** $Id: tokenize.c,v 1.49 2002/08/27 14:28:30 drh Exp $
** $Id: tokenize.c,v 1.50 2002/10/22 23:38:04 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -424,7 +424,6 @@ int sqliteRunParser(Parse *pParse, const char *zSql, char **pzErrMsg){
break;
}
pParse->sLastToken.z = &zSql[i];
pParse->sLastToken.base = 1;
pParse->sLastToken.dyn = 0;
pParse->sLastToken.n = sqliteGetToken((unsigned char*)&zSql[i], &tokenType);
i += pParse->sLastToken.n;