diff options
author | drh <drh@noemail.net> | 2011-06-01 19:44:57 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-06-01 19:44:57 +0000 |
commit | f167694f9a06eb3956d6eb30c8958d5854f0e0cd (patch) | |
tree | 198744695bc6ace8fc8231664b9db389eefaa64e /src/sqliteInt.h | |
parent | bdd0f3bc0e2bf20d4151c9eb606e5c633d3234de (diff) | |
parent | 04e9eeadc63bb651a658150e0529cd3463914690 (diff) | |
download | sqlite-f167694f9a06eb3956d6eb30c8958d5854f0e0cd.tar.gz sqlite-f167694f9a06eb3956d6eb30c8958d5854f0e0cd.zip |
Pull the latest trunk changes into the wal-readonly branch.
FossilOrigin-Name: 0b63b71357a65e26ecd3f3bb34a5f14feee322f4
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index a8d735628..8b0aa855d 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2230,9 +2230,8 @@ struct Parse { ** each recursion */ int nVar; /* Number of '?' variables seen in the SQL so far */ - int nVarExpr; /* Number of used slots in apVarExpr[] */ - int nVarExprAlloc; /* Number of allocated slots in apVarExpr[] */ - Expr **apVarExpr; /* Pointers to :aaa and $aaaa wildcard expressions */ + int nzVar; /* Number of available slots in azVar[] */ + char **azVar; /* Pointers to names of parameters */ Vdbe *pReprepare; /* VM being reprepared (sqlite3Reprepare()) */ int nAlias; /* Number of aliased result set columns */ int nAliasAlloc; /* Number of allocated slots for aAlias[] */ |