diff options
author | drh <drh@noemail.net> | 2001-09-13 16:18:53 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-09-13 16:18:53 +0000 |
commit | d78eeee1f2ce3db6773079d19551e365d756eb9d (patch) | |
tree | 194a5939d3356463e032db68aa184b0224f378a0 /src/sqliteInt.h | |
parent | 5b2fd56fcb3031d6cb34065dd7498719eeeb63e6 (diff) | |
download | sqlite-d78eeee1f2ce3db6773079d19551e365d756eb9d.tar.gz sqlite-d78eeee1f2ce3db6773079d19551e365d756eb9d.zip |
It runs. Simple tables can be created. INSERT and SELECT work. Much more
testing is needed, however. (CVS 241)
FossilOrigin-Name: 9ac8399c99cb996a382f3d49f45b6ca857adc827
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index bc4a1125b..71d1e0294 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -23,7 +23,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.44 2001/09/13 14:46:10 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.45 2001/09/13 16:18:54 drh Exp $ */ #include "sqlite.h" #include "vdbe.h" @@ -359,6 +359,7 @@ struct Parse { int colNamesSet; /* TRUE after OP_ColumnCount has been issued to pVdbe */ int explain; /* True if the EXPLAIN flag is found on the query */ int initFlag; /* True if reparsing CREATE TABLEs */ + int newTnum; /* Table number to use when reparsing CREATE TABLEs */ int nErr; /* Number of errors seen */ int nTab; /* Number of previously allocated cursors */ int nMem; /* Number of memory cells used so far */ |