aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2021-03-23 16:34:13 +0000
committerdrh <>2021-03-23 16:34:13 +0000
commited42b9805676de40a417d9d860295fc8134c80b0 (patch)
tree452a9eaef23ca9dce5bdb4ace647f17c48747d7d /src/sqliteInt.h
parent46bee2aa12bf48712f3ae31f74cbc8d3771a87bb (diff)
parent1fffa73ea2f06bf4c748f9d7ee6dda40e2ac6e7f (diff)
downloadsqlite-ed42b9805676de40a417d9d860295fc8134c80b0.tar.gz
sqlite-ed42b9805676de40a417d9d860295fc8134c80b0.zip
When doing schema updates, try to convert (incorrect) double-quoted strings
into (SQL-standard) single-quoted strings. FossilOrigin-Name: 0770470488e140fa21cb5097c26d58e21da85544af8b69faced1670bbc6d6089
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 69740248f..8dd8b1a7c 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -1533,10 +1533,7 @@ struct sqlite3 {
unsigned orphanTrigger : 1; /* Last statement is orphaned TEMP trigger */
unsigned imposterTable : 1; /* Building an imposter table */
unsigned reopenMemdb : 1; /* ATTACH is really a reopen using MemDB */
- unsigned bDropColumn : 1; /* Doing schema check after DROP COLUMN */
char **azInit; /* "type", "name", and "tbl_name" columns */
- /* or if bDropColumn, then azInit[0] is the */
- /* name of the column being dropped */
} init;
int nVdbeActive; /* Number of VDBEs currently running */
int nVdbeRead; /* Number of active VDBEs that read or write */