aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-07-03 22:54:36 +0000
committerdrh <drh@noemail.net>2009-07-03 22:54:36 +0000
commite7f3f3eec188730a42d92daa57f66492fa5de5fd (patch)
treea3994181f1fd80354d48ef9d4d3e43bd8ea6abf2 /src/sqliteInt.h
parent1adecdf8140801e889c7a96240520dd3addd4550 (diff)
downloadsqlite-e7f3f3eec188730a42d92daa57f66492fa5de5fd.tar.gz
sqlite-e7f3f3eec188730a42d92daa57f66492fa5de5fd.zip
Remove two unused fields from the Parse structure. The TCL interface now
removes leading whitespace from SQL statements before parsing them. (CVS 6846) FossilOrigin-Name: 983cb6924b8a7d3057718b9228c0cb2fbe7f0dc4
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 304697e51..8420425a5 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
-** @(#) $Id: sqliteInt.h,v 1.891 2009/07/03 15:37:28 drh Exp $
+** @(#) $Id: sqliteInt.h,v 1.892 2009/07/03 22:54:37 drh Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -2020,10 +2020,8 @@ struct Parse {
int nAliasAlloc; /* Number of allocated slots for aAlias[] */
int *aAlias; /* Register used to hold aliased result */
u8 explain; /* True if the EXPLAIN flag is found on the query */
- Token sErrToken; /* The token at which the error occurred */
Token sNameToken; /* Token with unqualified schema object name */
Token sLastToken; /* The last token parsed */
- const char *zSql; /* All SQL text */
const char *zTail; /* All SQL text past the last semicolon parsed */
Table *pNewTable; /* A table being constructed by CREATE TABLE */
Trigger *pNewTrigger; /* Trigger under construct by a CREATE TRIGGER */