From: Mike Bayer Date: Wed, 30 Mar 2016 20:32:55 +0000 (-0400) Subject: - changelog for #3629, fixes #3629 X-Git-Tag: rel_1_1_0b1~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5370f0503ad79e46a5d63c0f8ec0e9533447d25f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - changelog for #3629, fixes #3629 --- diff --git a/doc/build/changelog/changelog_11.rst b/doc/build/changelog/changelog_11.rst index 373fe4c3a1..2a0e609b62 100644 --- a/doc/build/changelog/changelog_11.rst +++ b/doc/build/changelog/changelog_11.rst @@ -21,6 +21,17 @@ .. changelog:: :version: 1.1.0b1 + .. change:: + :tags: feature, sqlite + :tickets: 3629 + + The SQLite dialect now reflects the names of primary key constraints. + Pull request courtesy Diana Clarke. + + .. seealso:: + + :ref:`change_3629` + .. change:: :tags: feature, sql :tickets: 2857 diff --git a/doc/build/changelog/migration_11.rst b/doc/build/changelog/migration_11.rst index 13749b0474..64ed2d9e25 100644 --- a/doc/build/changelog/migration_11.rst +++ b/doc/build/changelog/migration_11.rst @@ -2086,6 +2086,17 @@ the``CREATE INDEX`` DDL didn't work correctly for a schema-bound table and the :meth:`.Inspector.get_foreign_keys` method will now indicate the given schema in the results. Cross-schema foreign keys aren't supported. +.. _change_3629: + +Reflection of the name of PRIMARY KEY constraints +-------------------------------------------------- + +The SQLite backend now takes advantage of the "sqlite_master" view +of SQLite in order to extract the name of the primary key constraint +of a table from the original DDL, in the same way that is achieved for +foreign key constraints in recent SQLAlchemy versions. + +:ticket:`3629` Dialect Improvements and Changes - SQL Server =============================================