From: Mike Bayer Date: Sat, 18 Jan 2014 20:13:20 +0000 (-0500) Subject: - changelog for pullreq:11 X-Git-Tag: rel_0_9_2~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3347ff7a91b3604aa722682d3fb6ba1f70d48d5b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - changelog for pullreq:11 - be specific about version 0.9.2 --- 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 -----------------------------