summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects
diff options
context:
space:
mode:
authorSaulius Žemaitaitis <saulius@zemaitaitis.lt>2016-04-11 23:16:45 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2016-06-06 14:27:31 -0400
commita5f92314edd45a2e411b0f5b3c4d4bec0c7d92f8 (patch)
tree682a9fa4564293c7efc1411f4cf621abf648490e /lib/sqlalchemy/dialects
parent991346d5bbc29479c6c500c3f2b64fd6cc2e9a39 (diff)
downloadsqlalchemy-a5f92314edd45a2e411b0f5b3c4d4bec0c7d92f8.tar.gz
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
Diffstat (limited to 'lib/sqlalchemy/dialects')
-rw-r--r--lib/sqlalchemy/dialects/mssql/base.py51
1 files changed, 39 insertions, 12 deletions
diff --git a/lib/sqlalchemy/dialects/mssql/base.py b/lib/sqlalchemy/dialects/mssql/base.py
index 966700420..bc1ad5cdf 100644
--- a/lib/sqlalchemy/dialects/mssql/base.py
+++ b/lib/sqlalchemy/dialects/mssql/base.py
@@ -363,8 +363,6 @@ To generate a clustered index::
which renders the index as ``CREATE CLUSTERED INDEX my_index ON table (x)``.
-.. versionadded:: 0.8
-
To generate a clustered primary key use::
Table('my_table', metadata,
@@ -386,7 +384,24 @@ Similarly, we can generate a clustered unique constraint using::
UniqueConstraint("y", mssql_clustered=True),
)
- .. versionadded:: 0.9.2
+To explicitly request a non-clustered primary key (for example, when
+a separate clustered index is desired), use::
+
+ Table('my_table', metadata,
+ Column('x', ...),
+ Column('y', ...),
+ PrimaryKeyConstraint("x", "y", mssql_clustered=False))
+
+which will render the table, for example, as::
+
+ CREATE TABLE my_table (x INTEGER NOT NULL, y INTEGER NOT NULL,
+ PRIMARY KEY NONCLUSTERED (x, y))
+
+.. versionchanged:: 1.1 the ``mssql_clustered`` option now defaults
+ to None, rather than False. ``mssql_clustered=False`` now explicitly
+ renders the NONCLUSTERED clause, whereas None omits the CLUSTERED
+ clause entirely, allowing SQL Server defaults to take effect.
+
MSSQL-Specific Index Options
-----------------------------
@@ -1420,8 +1435,12 @@ class MSDDLCompiler(compiler.DDLCompiler):
text += "UNIQUE "
# handle clustering option
- if index.dialect_options['mssql']['clustered']:
- text += "CLUSTERED "
+ clustered = index.dialect_options['mssql']['clustered']
+ if clustered is not None:
+ if clustered:
+ text += "CLUSTERED "
+ else:
+ text += "NONCLUSTERED "
text += "INDEX %s ON %s (%s)" \
% (
@@ -1464,8 +1483,12 @@ class MSDDLCompiler(compiler.DDLCompiler):
self.preparer.format_constraint(constraint)
text += "PRIMARY KEY "
- if constraint.dialect_options['mssql']['clustered']:
- text += "CLUSTERED "
+ clustered = constraint.dialect_options['mssql']['clustered']
+ if clustered is not None:
+ if clustered:
+ text += "CLUSTERED "
+ else:
+ text += "NONCLUSTERED "
text += "(%s)" % ', '.join(self.preparer.quote(c.name)
for c in constraint)
@@ -1481,8 +1504,12 @@ class MSDDLCompiler(compiler.DDLCompiler):
self.preparer.format_constraint(constraint)
text += "UNIQUE "
- if constraint.dialect_options['mssql']['clustered']:
- text += "CLUSTERED "
+ clustered = constraint.dialect_options['mssql']['clustered']
+ if clustered is not None:
+ if clustered:
+ text += "CLUSTERED "
+ else:
+ text += "NONCLUSTERED "
text += "(%s)" % ', '.join(self.preparer.quote(c.name)
for c in constraint)
@@ -1576,13 +1603,13 @@ class MSDialect(default.DefaultDialect):
construct_arguments = [
(sa_schema.PrimaryKeyConstraint, {
- "clustered": False
+ "clustered": None
}),
(sa_schema.UniqueConstraint, {
- "clustered": False
+ "clustered": None
}),
(sa_schema.Index, {
- "clustered": False,
+ "clustered": None,
"include": None
})
]