Get the code to compile with -DSQLITE_OMIT_VIRTUALTABLE=1 (CVS 3230)

FossilOrigin-Name: ea4bc5a0be6cfc81ef1e9405f396c43205fe9cd8
This commit is contained in:
drh 2006-06-13 15:36:06 +00:00
parent 70df4fe6c2
commit 5dc1aaa9d1
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
C Improved\scomments\sand\sdocumentation\sof\ssqlite3_load_extension().\s(CVS\s3229) C Get\sthe\scode\sto\scompile\swith\s-DSQLITE_OMIT_VIRTUALTABLE=1\s(CVS\s3230)
D 2006-06-13T15:12:21 D 2006-06-13T15:36:07
F Makefile.in 56fd6261e83f60724e6dcd764e06ab68cbd53909 F Makefile.in 56fd6261e83f60724e6dcd764e06ab68cbd53909
F Makefile.linux-gcc 74ba0eadf88748a9ce3fd03d2a3ede2e6715baec F Makefile.linux-gcc 74ba0eadf88748a9ce3fd03d2a3ede2e6715baec
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@ -74,7 +74,7 @@ F src/server.c 087b92a39d883e3fa113cae259d64e4c7438bc96
F src/shell.c ad73192b30a338a58fe81183d4a5d5a1d4e51d36 F src/shell.c ad73192b30a338a58fe81183d4a5d5a1d4e51d36
F src/sqlite.h.in 92cbeeacf040bffe109057d3af2db9dc63db8a67 F src/sqlite.h.in 92cbeeacf040bffe109057d3af2db9dc63db8a67
F src/sqlite3ext.h 127bd394c8eea481f2ac9b754bf399dbfc818b75 F src/sqlite3ext.h 127bd394c8eea481f2ac9b754bf399dbfc818b75
F src/sqliteInt.h 91cc3603fe2e1be18d52490a2fa65ed9640fb338 F src/sqliteInt.h e8710fd5c10c03ca4a2fb49802b8aae6689f27a0
F src/table.c f64ec4fbfe333f8df925bc6ba494f55e05b0e75e F src/table.c f64ec4fbfe333f8df925bc6ba494f55e05b0e75e
F src/tclsqlite.c 0b2a04cfc1b4298adfbe90a754cfbbe207aca11a F src/tclsqlite.c 0b2a04cfc1b4298adfbe90a754cfbbe207aca11a
F src/test1.c 88291fa6674dcd409b1c9d76d3119151d4b81a50 F src/test1.c 88291fa6674dcd409b1c9d76d3119151d4b81a50
@ -363,7 +363,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
P 7a3e97f76b1f4f97a04f7c5a9daa400402b2ff25 P 0bcec95963603270ee053c83b1f6960b2029d378
R 99814ab55d5388c50dbc5b5d45b55362 R b10d238a92b39f83ee40dd1156a4642c
U drh U drh
Z 9e34725cf1a9f7698b5b20c0e7a693ad Z fda6c445ee74204475ea68b334d7f609

View File

@ -1 +1 @@
0bcec95963603270ee053c83b1f6960b2029d378 ea4bc5a0be6cfc81ef1e9405f396c43205fe9cd8

View File

@ -11,7 +11,7 @@
************************************************************************* *************************************************************************
** Internal interface definitions for SQLite. ** 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_ #ifndef _SQLITEINT_H_
#define _SQLITEINT_H_ #define _SQLITEINT_H_
@ -694,6 +694,7 @@ struct Table {
u8 hasPrimKey; /* True if there exists a primary key */ u8 hasPrimKey; /* True if there exists a primary key */
u8 keyConf; /* What to do in case of uniqueness conflict on iPKey */ u8 keyConf; /* What to do in case of uniqueness conflict on iPKey */
u8 autoInc; /* True if the integer primary key is autoincrement */ 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 */ int nRef; /* Number of pointers to this Table */
Trigger *pTrigger; /* List of SQL triggers on this table */ Trigger *pTrigger; /* List of SQL triggers on this table */
FKey *pFKey; /* Linked list of all foreign keys in 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 */ sqlite3_vtab *pVtab; /* Pointer to the module instance */
int nModuleArg; /* Number of arguments to the module */ int nModuleArg; /* Number of arguments to the module */
char **azModuleArg; /* Text of all module args. [0] is module name */ char **azModuleArg; /* Text of all module args. [0] is module name */
u8 isVirtual; /* True if this is a virtual table */
#endif #endif
Schema *pSchema; Schema *pSchema;
}; };