]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
add missing changelog for #12954 main
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 4 Nov 2025 21:56:34 +0000 (16:56 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 4 Nov 2025 21:56:34 +0000 (16:56 -0500)
Change-Id: I9b779230c236884dc58f79c97e65bd6c983b252e

doc/build/changelog/unreleased_20/12954.rst [new file with mode: 0644]

diff --git a/doc/build/changelog/unreleased_20/12954.rst b/doc/build/changelog/unreleased_20/12954.rst
new file mode 100644 (file)
index 0000000..e3df8b1
--- /dev/null
@@ -0,0 +1,9 @@
+.. change::
+    :tags: bug, sqlite
+    :tickets: 12954
+
+    Fixed issue where SQLite dialect would fail to reflect constraint names
+    that contained uppercase letters or other characters requiring quoting. The
+    regular expressions used to parse primary key, foreign key, and unique
+    constraint names from the ``CREATE TABLE`` statement have been updated to
+    properly handle both quoted and unquoted constraint names.