]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- changelog for pullreq:11
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Jan 2014 20:13:20 +0000 (15:13 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Jan 2014 20:13:20 +0000 (15:13 -0500)
- be specific about version 0.9.2

doc/build/changelog/changelog_09.rst
lib/sqlalchemy/dialects/mssql/base.py

index 369eb6c42ff83f496ba2950cebf11c055c23b39b..29cb8e2e463097e053173178493d3eedfe933752 100644 (file)
 .. 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
index 6c942b270a0eb2f1b98f2a11b55d385f9581672a..0e779686cea628d9f42fb634be88844087b1beec 100644 (file)
@@ -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
 -----------------------------