diff options
author | drh <> | 2021-03-14 19:55:40 +0000 |
---|---|---|
committer | drh <> | 2021-03-14 19:55:40 +0000 |
commit | 44d441313aa9600118a1fe1741ad01f8459b166d (patch) | |
tree | a2b977093d7fc0e0bd3e60b0980f13b54041d691 /src/sqliteInt.h | |
parent | 9c0fee296a9e63a644760af707a93f2e4a3257b4 (diff) | |
download | sqlite-44d441313aa9600118a1fe1741ad01f8459b166d.tar.gz sqlite-44d441313aa9600118a1fe1741ad01f8459b166d.zip |
An alternative approach for fixing ticket [1c24a659e6d7f3a1].
FossilOrigin-Name: a2adae907a28e169e64cfe69d97d7b68cb94e6ba07d2dfa995e3fbc6672fafdd
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 0107d74b6..6bd53d20f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1533,7 +1533,10 @@ struct sqlite3 { unsigned orphanTrigger : 1; /* Last statement is orphaned TEMP trigger */ unsigned imposterTable : 1; /* Building an imposter table */ unsigned reopenMemdb : 1; /* ATTACH is really a reopen using MemDB */ + unsigned bDropColumn : 1; /* Doing schema check after DROP COLUMN */ char **azInit; /* "type", "name", and "tbl_name" columns */ + /* or if bDropColumn, then azInit[0] is the */ + /* name of the column being dropped */ } init; int nVdbeActive; /* Number of VDBEs currently running */ int nVdbeRead; /* Number of active VDBEs that read or write */ |