aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2018-09-20 08:28:01 +0000
committerdan <dan@noemail.net>2018-09-20 08:28:01 +0000
commit674b89426912a52dd1fcbe726fc94d0d70dab5ea (patch)
treec96ad01b22b20cf2a79a1020c46b88ba48aed630 /src/sqliteInt.h
parent85c6892aa45dc0f476aa9bd772c678215f679853 (diff)
downloadsqlite-674b89426912a52dd1fcbe726fc94d0d70dab5ea.tar.gz
sqlite-674b89426912a52dd1fcbe726fc94d0d70dab5ea.zip
Add a PRAGMA that restores the legacy ALTER TABLE RENAME TO behaviour.
FossilOrigin-Name: 5acad2e92c11c209bedc6ac8a709595e8070eed028ffc82af61499e5ceaa5e2b
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 74438b5ab..77f08fac5 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -1536,6 +1536,7 @@ struct sqlite3 {
#define SQLITE_EnableQPSG 0x00800000 /* Query Planner Stability Guarantee*/
#define SQLITE_TriggerEQP 0x01000000 /* Show trigger EXPLAIN QUERY PLAN */
#define SQLITE_ResetDatabase 0x02000000 /* Reset the database */
+#define SQLITE_LegacyAlter 0x04000000 /* Legacy ALTER TABLE behaviour */
/* Flags used only if debugging */
#ifdef SQLITE_DEBUG