diff options
author | drh <drh@noemail.net> | 2015-01-30 20:59:27 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-01-30 20:59:27 +0000 |
commit | 1ffede8c86303506cf7a1536d00b9b5b688ae595 (patch) | |
tree | d13bd991bce9b1f83f78774661dba37d1c6e1b8e /src/sqliteInt.h | |
parent | 0699f29a14f0cd013092a04789ee14f53fc5ed9f (diff) | |
download | sqlite-1ffede8c86303506cf7a1536d00b9b5b688ae595.tar.gz sqlite-1ffede8c86303506cf7a1536d00b9b5b688ae595.zip |
Change SQLITE_TESTCTRL_INITMODE to SQLITE_TESTCTRL_IMPOSTER. Revise the order
of parameters. Give it the ability to reset the schema parse table so that
imposter tables can be erased.
FossilOrigin-Name: 42d5601739c90434e5adfda8fa99ef7b903877db
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 379456d5f..0bc6f679d 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1087,6 +1087,7 @@ struct sqlite3 { u8 iDb; /* Which db file is being initialized */ u8 busy; /* TRUE if currently initializing */ u8 orphanTrigger; /* Last statement is orphaned TEMP trigger */ + u8 imposterTable; /* Building an imposter table */ } init; int nVdbeActive; /* Number of VDBEs currently running */ int nVdbeRead; /* Number of active VDBEs that read or write */ |