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

Change "PRAGMA disable_recursive_triggers" to "PRAGMA recursive_triggers". Also a fix for compiling with OMIT_TRIGGER defined.

FossilOrigin-Name: e016cca36390451d5d1c6e0d1b3cdbd6d869be1a
This commit is contained in:
dan
2009-09-01 17:11:07 +00:00
parent 3c94888d07
commit 5bde73c4eb
13 changed files with 34 additions and 29 deletions

View File

@@ -1591,7 +1591,7 @@ static int openDatabase(
#ifdef SQLITE_ENABLE_LOAD_EXTENSION
| SQLITE_LoadExtension
#endif
#if 1 || defined(SQLITE_DISABLE_RECURSIVE_TRIGGERS)
#if SQLITE_DEFAULT_RECURSIVE_TRIGGERS
| SQLITE_NoRecTriggers
#endif
;