summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPhillip Cloud <cpcloud@gmail.com>2018-07-16 10:10:55 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2018-07-18 10:48:27 -0400
commit893eac06e511f3765c0c89bab76d7933d83ffccc (patch)
tree440d7b625e6dfcc505d42b16a721395a50bf480d /doc
parentfb377229cd4c4e503bde9c44b78d30ad48f3cf7e (diff)
downloadsqlalchemy-893eac06e511f3765c0c89bab76d7933d83ffccc.tar.gz
Fix quoting schemas in _get_table_sql for the SQLite backend
Fixed issue where the "schema" name used for a SQLite database within table reflection would not quote the schema name correctly. Pull request courtesy Phillip Cloud. Change-Id: I2770788c1f094a7743209250ec26b5ef5fb2d9e8 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/463
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/unreleased_12/pr824.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_12/pr824.rst b/doc/build/changelog/unreleased_12/pr824.rst
new file mode 100644
index 000000000..a78bf2455
--- /dev/null
+++ b/doc/build/changelog/unreleased_12/pr824.rst
@@ -0,0 +1,6 @@
+.. change::
+ :tag: bug, sqlite
+
+ Fixed issue where the "schema" name used for a SQLite database within table
+ reflection would not quote the schema name correctly. Pull request
+ courtesy Phillip Cloud.