diff options
author | drh <drh@noemail.net> | 2013-07-11 12:19:12 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2013-07-11 12:19:12 +0000 |
commit | 963c74df5988fa4bf5dd6dda9fb15a9b09a0d6a4 (patch) | |
tree | d4caf2dfae4eb7cac77b5965a4410febaa68074f /src/sqliteInt.h | |
parent | 888e16e7c50efe29c2e48ae7cf8cab942ba496fb (diff) | |
download | sqlite-963c74df5988fa4bf5dd6dda9fb15a9b09a0d6a4.tar.gz sqlite-963c74df5988fa4bf5dd6dda9fb15a9b09a0d6a4.zip |
Rename the SQLITE_DeferForeignKeys macro to shorter SQLITE_DeferFKs. Move
the "defer_foreign_keys" pragma into the flagPragma() routine.
FossilOrigin-Name: 3a2ab74c85a40e0e7ef2d6aef6ec23837cb788e6
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 228d34fc5..f989c3a30 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1018,7 +1018,7 @@ struct sqlite3 { #define SQLITE_PreferBuiltin 0x00100000 /* Preference to built-in funcs */ #define SQLITE_LoadExtension 0x00200000 /* Enable load_extension */ #define SQLITE_EnableTrigger 0x00400000 /* True to enable triggers */ -#define SQLITE_DeferForeignKeys 0x00800000 +#define SQLITE_DeferFKs 0x00800000 /* Defer all FK constraints */ /* ** Bits of the sqlite3.dbOptFlags field that are used by the |