summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2023-05-12 12:40:01 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2023-05-12 13:06:05 -0400
commit8ba4a4435871fe948f8292e7bb5bbc452e7d51ca (patch)
tree4a6cabcfe4728b9964034fb4085ad425a0b7bde0 /docs
parent497c6c86b9547eed2ac297b1618300430578b86f (diff)
downloadalembic-8ba4a4435871fe948f8292e7bb5bbc452e7d51ca.tar.gz
dont compare unique constraint and index sigs to each other
Fixed regression caused by :ticket:`1166` released in version 1.10.0 which caused MySQL unique constraints with multiple columns to not compare correctly within autogenerate, due to different sorting rules on unique constraints vs. indexes, which in MySQL are shared constructs. Change-Id: I5687dde95281f237fd73367d145b9c62e2576a3a Fixes: #1240
Diffstat (limited to 'docs')
-rw-r--r--docs/build/unreleased/1240.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/build/unreleased/1240.rst b/docs/build/unreleased/1240.rst
new file mode 100644
index 0000000..19cfd81
--- /dev/null
+++ b/docs/build/unreleased/1240.rst
@@ -0,0 +1,8 @@
+.. change::
+ :tags: bug, mysql, regression
+ :tickets: 1240
+
+ Fixed regression caused by :ticket:`1166` released in version 1.10.0 which
+ caused MySQL unique constraints with multiple columns to not compare
+ correctly within autogenerate, due to different sorting rules on unique
+ constraints vs. indexes, which in MySQL are shared constructs.