Added "exists" to the list of reserved words for SQLite so that this word
will be quoted when used as a label or column name. Pull request courtesy
Thodoris Sotiropoulos.
Fixes: #5395
Closes: #5396
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5396
Pull-request-sha:
5608317a38db7b63115e3b467d182a3e5cc31580
Change-Id: Ia4769de2dec159dcf282eb4b30c11560da51a5c7
(cherry picked from commit
ed4a4896aea7dd77dd5d8a9861302811ac421e47)
--- /dev/null
+.. change::
+ :tags: bug, sqlite
+ :tickets: 5395
+
+ Added "exists" to the list of reserved words for SQLite so that this word
+ will be quoted when used as a label or column name. Pull request courtesy
+ Thodoris Sotiropoulos.
"escape",
"except",
"exclusive",
+ "exists",
"explain",
"false",
"fail",
Column("true", Integer),
Column("false", Integer),
Column("column", Integer),
+ Column("exists", Integer),
)
try:
meta.create_all()