diff options
author | drh <drh@noemail.net> | 2006-06-13 15:36:06 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-06-13 15:36:06 +0000 |
commit | 5dc1aaa9d135cd96b661d6f0491cdbe34377194c (patch) | |
tree | 237ff36a6d5a3a51bc3924d4de75bd0847ca3963 /src | |
parent | 70df4fe6c28ea518935ec94889d3bc9b53a49be7 (diff) | |
download | sqlite-5dc1aaa9d135cd96b661d6f0491cdbe34377194c.tar.gz sqlite-5dc1aaa9d135cd96b661d6f0491cdbe34377194c.zip |
Get the code to compile with -DSQLITE_OMIT_VIRTUALTABLE=1 (CVS 3230)
FossilOrigin-Name: ea4bc5a0be6cfc81ef1e9405f396c43205fe9cd8
Diffstat (limited to 'src')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 9c882f89b..28ea1f73f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.503 2006/06/13 10:24:43 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.504 2006/06/13 15:36:07 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -694,6 +694,7 @@ struct Table { u8 hasPrimKey; /* True if there exists a primary key */ u8 keyConf; /* What to do in case of uniqueness conflict on iPKey */ u8 autoInc; /* True if the integer primary key is autoincrement */ + u8 isVirtual; /* True if this is a virtual table */ int nRef; /* Number of pointers to this Table */ Trigger *pTrigger; /* List of SQL triggers on this table */ FKey *pFKey; /* Linked list of all foreign keys in this table */ @@ -709,7 +710,6 @@ struct Table { sqlite3_vtab *pVtab; /* Pointer to the module instance */ int nModuleArg; /* Number of arguments to the module */ char **azModuleArg; /* Text of all module args. [0] is module name */ - u8 isVirtual; /* True if this is a virtual table */ #endif Schema *pSchema; }; |