From: Mike Bayer Date: Tue, 4 Nov 2025 21:56:34 +0000 (-0500) Subject: add missing changelog for #12954 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Frel_2_0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git add missing changelog for #12954 Change-Id: I9b779230c236884dc58f79c97e65bd6c983b252e (cherry picked from commit 1bddbd9e58a2835dbc3539ffc38a93a4cb85a105) --- diff --git a/doc/build/changelog/unreleased_20/12954.rst b/doc/build/changelog/unreleased_20/12954.rst new file mode 100644 index 0000000000..e3df8b1d9c --- /dev/null +++ b/doc/build/changelog/unreleased_20/12954.rst @@ -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.