]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Allow creating explicit non-clustered keys and indexes MS SQL.
authorSaulius Žemaitaitis <saulius@zemaitaitis.lt>
Tue, 12 Apr 2016 03:16:45 +0000 (23:16 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 6 Jun 2016 18:27:31 +0000 (14:27 -0400)
commita5f92314edd45a2e411b0f5b3c4d4bec0c7d92f8
tree682a9fa4564293c7efc1411f4cf621abf648490e
parent991346d5bbc29479c6c500c3f2b64fd6cc2e9a39
Allow creating explicit non-clustered keys and indexes MS SQL.

mssql_clustered=False on Index, UniqueConstraint,
PrimaryKeyConstraint now renders NONCLUSTERED.
The default of mssql_clustered is now None.

Co-Authored-By: mike bayer <mike_mp@zzzcomputing.com>
Change-Id: Id6b8d840e355be8f8fa72360cb4b6d2617ba72cf
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/252
doc/build/changelog/changelog_11.rst
doc/build/changelog/migration_11.rst
lib/sqlalchemy/dialects/mssql/base.py
test/dialect/mssql/test_compiler.py