aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2020-08-10 21:01:32 +0000
committerdrh <drh@noemail.net>2020-08-10 21:01:32 +0000
commit47eb561c4066be1b92f54dde5aaeae87ab630b04 (patch)
tree67d6c12ed39f615d9bd03c96ec89b4613894d781 /src/sqliteInt.h
parent9f567eb9f5f561e8251160e365de7d65b968d32c (diff)
downloadsqlite-47eb561c4066be1b92f54dde5aaeae87ab630b04.tar.gz
sqlite-47eb561c4066be1b92f54dde5aaeae87ab630b04.zip
Simplify #ifdefs associated with Parse.eParseMode. Fix an #ifdef error
associated with SQLITE_OMIT_AUTOVACUUM. FossilOrigin-Name: 5bbd4bddd3b9fa64d134ed62bce3eb4a09456bf24dec2474b5d764a3a3775964
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 0dc21617d..b4c5325ac 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -3395,9 +3395,7 @@ struct Parse {
ynVar nVar; /* Number of '?' variables seen in the SQL so far */
u8 iPkSortOrder; /* ASC or DESC for INTEGER PRIMARY KEY */
u8 explain; /* True if the EXPLAIN flag is found on the query */
-#if !(defined(SQLITE_OMIT_VIRTUALTABLE) && defined(SQLITE_OMIT_ALTERTABLE))
u8 eParseMode; /* PARSE_MODE_XXX constant */
-#endif
#ifndef SQLITE_OMIT_VIRTUALTABLE
int nVtabLock; /* Number of virtual tables to lock */
#endif