summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects
diff options
context:
space:
mode:
authormollardthomas <mollardthomas@gmail.com>2019-05-03 11:31:57 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-05-06 18:11:42 -0400
commit174f2ae33b5235d709b17f3371946a173defaa0d (patch)
treed1893216bc2ba92fdf823c2b557209ef5a91c2b1 /lib/sqlalchemy/dialects
parent1c3e92627362604472ca483055fc827a97942e6b (diff)
downloadsqlalchemy-174f2ae33b5235d709b17f3371946a173defaa0d.tar.gz
Add support for filtered indexes for mssql dialect
Added support for SQL Server filtered indexes, via the ``mssql_where`` parameter which works similarly to that of the ``postgresql_where`` index function in the PostgreSQL dialect. Fixes: #4657 Closes: #4658 Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/4658 Pull-request-sha: cf609c19bccc74c0dba38d2fc4976df3a205f3f6 Change-Id: I9c61b97d0b0cb6f6d417da7b1875b40f8f918a3c
Diffstat (limited to 'lib/sqlalchemy/dialects')
-rw-r--r--lib/sqlalchemy/dialects/mssql/base.py24
1 files changed, 23 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/mssql/base.py b/lib/sqlalchemy/dialects/mssql/base.py
index 507fcfdcb..d2c84f446 100644
--- a/lib/sqlalchemy/dialects/mssql/base.py
+++ b/lib/sqlalchemy/dialects/mssql/base.py
@@ -540,6 +540,20 @@ names::
would render the index as ``CREATE INDEX my_index ON table (x) INCLUDE (y)``
+.. _mssql_index_where:
+
+Filtered Indexes
+^^^^^^^^^^^^^^^^
+
+The ``mssql_where`` option renders WHERE(condition) for the given string
+names::
+
+ Index("my_index", table.c.x, mssql_where=table.c.x > 10)
+
+would render the index as ``CREATE INDEX my_index ON table (x) WHERE x > 10``.
+
+.. versionadded:: 1.3.4
+
Index ordering
^^^^^^^^^^^^^^
@@ -1950,6 +1964,14 @@ class MSDDLCompiler(compiler.DDLCompiler):
),
)
+ whereclause = index.dialect_options["mssql"]["where"]
+
+ if whereclause is not None:
+ where_compiled = self.sql_compiler.process(
+ whereclause, include_table=False, literal_binds=True
+ )
+ text += " WHERE " + where_compiled
+
# handle other included columns
if index.dialect_options["mssql"]["include"]:
inclusions = [
@@ -2182,7 +2204,7 @@ class MSDialect(default.DefaultDialect):
construct_arguments = [
(sa_schema.PrimaryKeyConstraint, {"clustered": None}),
(sa_schema.UniqueConstraint, {"clustered": None}),
- (sa_schema.Index, {"clustered": None, "include": None}),
+ (sa_schema.Index, {"clustered": None, "include": None, "where": None}),
(sa_schema.Column, {"identity_start": 1, "identity_increment": 1}),
]