diff options
author | drh <drh@noemail.net> | 2018-11-03 16:09:59 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-11-03 16:09:59 +0000 |
commit | a296cda016dfcf81674b04c041637fa0a4f426ac (patch) | |
tree | cfd8eb3a5a7162130268f7bbabce562b4026e732 /src/sqliteInt.h | |
parent | c6e519f335af83d8a816b4a0501ebd30f6057548 (diff) | |
download | sqlite-a296cda016dfcf81674b04c041637fa0a4f426ac.tar.gz sqlite-a296cda016dfcf81674b04c041637fa0a4f426ac.zip |
Add the SQLITE_DBCONFIG_DEFENSIVE flag.
FossilOrigin-Name: af3f29d49359af2291b1d9e06e0db76fd000fbd24b4ac84d2668a0d1322efd83
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 20db52de3..0482db21d 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1540,6 +1540,7 @@ struct sqlite3 { #define SQLITE_ResetDatabase 0x02000000 /* Reset the database */ #define SQLITE_LegacyAlter 0x04000000 /* Legacy ALTER TABLE behaviour */ #define SQLITE_NoSchemaError 0x08000000 /* Do not report schema parse errors*/ +#define SQLITE_Defensive 0x10000000 /* Input SQL is likely hostile */ /* Flags used only if debugging */ #define HI(X) ((u64)(X)<<32) |