1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Add SQLITE_DBCONFIG options LEGACY_ALTER_TABLE, NO_DQS_SCHEMA, and NO_DQS.

FossilOrigin-Name: 1fad20925efa70d0c242e9cba8fa55456fb07a81229c1068da84c6e27d0c0be8
This commit is contained in:
drh
2019-06-14 21:25:25 +00:00
parent c164cc992f
commit 0a6873bfd6
8 changed files with 84 additions and 33 deletions

View File

@@ -1548,6 +1548,8 @@ struct sqlite3 {
#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 */
#define SQLITE_NoDQSSchema 0x20000000 /* No dbl-quote strings in CREATE */
#define SQLITE_NoDQS 0x40000000 /* No double-quoted strings anywhere*/
/* Flags used only if debugging */
#define HI(X) ((u64)(X)<<32)