summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2020-07-13 19:07:35 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2020-07-13 19:07:35 +0000
commit5cae798ba9ead35dabf91da24b216a56415333c3 (patch)
treee1ac7ad3e4ff1a9193bb1d31151280769a145f91 /doc
parent99d3f173dcb0eea88871102e89cf05ce3be9b4cb (diff)
parent9d0fb152069caa8de887aba28cef87f7acb32e37 (diff)
downloadsqlalchemy-2020_tutorial.tar.gz
Merge "test single and double quote inspection scenarios"2020_tutorial
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/unreleased_13/5456.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_13/5456.rst b/doc/build/changelog/unreleased_13/5456.rst
new file mode 100644
index 000000000..823f3731b
--- /dev/null
+++ b/doc/build/changelog/unreleased_13/5456.rst
@@ -0,0 +1,9 @@
+.. change::
+ :tags: bug, reflection, sqlite, mssql
+ :tickets: 5456
+
+ Applied a sweep through all included dialects to ensure names that contain
+ single or double quotes are properly escaped when querying system tables,
+ for all :class:`.Inspector` methods that accept object names as an argument
+ (e.g. table names, view names, etc). SQLite and MSSQL contained two
+ quoting issues that were repaired.