diff options
author | danielk1977 <danielk1977@noemail.net> | 2006-06-24 08:51:05 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2006-06-24 08:51:05 +0000 |
commit | 33b3933c1501a4f2e37f9439f772fbc6443a90a5 (patch) | |
tree | c1a2e1b0369ea1f40477ac9abe18d50e9a14fb58 /src/sqliteInt.h | |
parent | cc013f891ce1490d2fa7e173391ca155b05b673e (diff) | |
download | sqlite-33b3933c1501a4f2e37f9439f772fbc6443a90a5.tar.gz sqlite-33b3933c1501a4f2e37f9439f772fbc6443a90a5.zip |
Ensure whitespace specified as part of a virtual table constructor argument is correctly passed to the constructor function. (CVS 3290)
FossilOrigin-Name: 4630e11d9a697a7fa29a0a1bbca91da4ad2bde7b
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 46139da21..f25ebfd2c 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.511 2006/06/23 08:05:19 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.512 2006/06/24 08:51:05 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1307,9 +1307,7 @@ struct Parse { TriggerStack *trigStack; /* Trigger actions being coded */ const char *zAuthContext; /* The 6th parameter to db->xAuth callbacks */ #ifndef SQLITE_OMIT_VIRTUALTABLE - int nArgAlloc; /* Number of bytes allocated for zArg[] */ - int nArgUsed; /* Number of bytes of zArg[] used so far */ - char *zArg; /* Complete text of a module argument */ + Token sArg; /* Complete text of a module argument */ u8 declareVtab; /* True if inside sqlite3_declare_vtab() */ Table *pVirtualLock; /* Require virtual table lock on this table */ #endif |