aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <Dan Kennedy>2021-02-17 20:08:22 +0000
committerdan <Dan Kennedy>2021-02-17 20:08:22 +0000
commit6a5a13df978cb9371bca8e1721037eef78da66ae (patch)
treef5df39130c8fc0bdd29fe33dfd1f4dc94ad5e181 /src/sqliteInt.h
parent6e6d9833ccf422b90f5b1875c948c11544f32ce6 (diff)
downloadsqlite-6a5a13df978cb9371bca8e1721037eef78da66ae.tar.gz
sqlite-6a5a13df978cb9371bca8e1721037eef78da66ae.zip
Fix various issues with the changes on this branch. Add test cases for the same.
FossilOrigin-Name: 10538ec6fc1642dfc2ca6cef06ce6cb9e124847b421ccf01f5842064fad379ab
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 9c09b24ac..850396ced 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -3711,7 +3711,8 @@ typedef struct {
/*
** Allowed values for mInitFlags
*/
-#define INITFLAG_AlterTable 0x0001 /* This is a reparse after ALTER TABLE */
+#define INITFLAG_AlterRename 0x0001 /* Reparse after a RENAME */
+#define INITFLAG_AlterDrop 0x0002 /* Reparse after a DROP COLUMN */
/*
** Structure containing global configuration data for the SQLite library.