From 3347ff7a91b3604aa722682d3fb6ba1f70d48d5b Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 18 Jan 2014 15:13:20 -0500 Subject: [PATCH] - changelog for pullreq:11 - be specific about version 0.9.2 --- doc/build/changelog/changelog_09.rst | 16 ++++++++++++++++ lib/sqlalchemy/dialects/mssql/base.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst index 369eb6c42f..29cb8e2e46 100644 --- a/doc/build/changelog/changelog_09.rst +++ b/doc/build/changelog/changelog_09.rst @@ -14,6 +14,22 @@ .. changelog:: :version: 0.9.2 + .. change:: + :tags: bug, sql + :pullreq: bitbucket:11 + + A :class:`.UniqueConstraint` created inline with a :class:`.Table` + that has no columns within it will be skipped. Pullreq courtesy + Derek Harland. + + .. change:: + :tags: feature, mssql + :pullreq: bitbucket:11 + + Added an option ``mssql_clustered`` to the :class:`.UniqueConstraint` + and :class:`.PrimaryKeyConstraint` constructs; on SQL Server, this adds + the ``CLUSTERED`` keyword to the constraint construct within DDL. + .. change:: :tags: bug, oracle :tickets: 2911 diff --git a/lib/sqlalchemy/dialects/mssql/base.py b/lib/sqlalchemy/dialects/mssql/base.py index 6c942b270a..0e779686ce 100644 --- a/lib/sqlalchemy/dialects/mssql/base.py +++ b/lib/sqlalchemy/dialects/mssql/base.py @@ -138,7 +138,7 @@ Similarly, we can generate a clustered unique constraint using:: UniqueConstraint("y", mssql_clustered=True), ) - .. versionadded:: 0.9 + .. versionadded:: 0.9.2 MSSQL-Specific Index Options ----------------------------- -- 2.47.3