summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGord Thompson <gord@gordthompson.com>2021-10-09 13:58:36 -0600
committermike bayer <mike_mp@zzzcomputing.com>2021-10-14 22:38:18 +0000
commitfa247a04682a08a574d4f8356f62f474db1cdb57 (patch)
tree948ed210733580162982b579cc1599e27e84f5d2 /doc
parentfec2b6560c14bb28ee7fc9d21028844acf700b04 (diff)
downloadsqlalchemy-fa247a04682a08a574d4f8356f62f474db1cdb57.tar.gz
Fix reflection of FK against a unique index
Also implement reflection of ON DELETE, ON UPDATE as the data is right there. Fixes: #7160 Change-Id: Ifff871a8cb1d1bea235616042e16ed3b5c5f19f9
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/unreleased_14/7160.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/build/changelog/unreleased_14/7160.rst b/doc/build/changelog/unreleased_14/7160.rst
new file mode 100644
index 000000000..b086efce9
--- /dev/null
+++ b/doc/build/changelog/unreleased_14/7160.rst
@@ -0,0 +1,14 @@
+.. change::
+ :tags: bug, mssql
+ :tickets: 7160
+
+ Fixed issue with :meth:`.Inspector.get_foreign_keys` where foreign
+ keys were omitted if they were established against a unique
+ index instead of a unique constraint.
+
+
+.. change::
+ :tags: usecase, mssql
+
+ Added reflection support for SQL Server foreign key options, including
+ "ON UPDATE" and "ON DELETE" values of "CASCADE" and "SET NULL".