summaryrefslogtreecommitdiff
path: root/test/dialect
diff options
context:
space:
mode:
authordonkopotamus <derek.harland@finq.co.nz>2014-01-17 10:38:31 +1300
committerdonkopotamus <derek.harland@finq.co.nz>2014-01-17 10:38:31 +1300
commit1de7259093b1a49438ab26ca9661fd6023244afe (patch)
treed1640c62355ea2bc001699dd679cbffde33fb194 /test/dialect
parent40563e9355f4dd2e677d65b37a2e40dfb0f8ff31 (diff)
downloadsqlalchemy-1de7259093b1a49438ab26ca9661fd6023244afe.tar.gz
Remove support for mssql_clustered on Table
Diffstat (limited to 'test/dialect')
-rw-r--r--test/dialect/mssql/test_compiler.py13
1 files changed, 1 insertions, 12 deletions
diff --git a/test/dialect/mssql/test_compiler.py b/test/dialect/mssql/test_compiler.py
index 40ca603a0..f1cf6924c 100644
--- a/test/dialect/mssql/test_compiler.py
+++ b/test/dialect/mssql/test_compiler.py
@@ -510,18 +510,7 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL):
"CREATE TABLE test (id INTEGER NOT NULL IDENTITY(1,1))"
)
- def test_table_pkc_clustering_1(self):
- metadata = MetaData()
- tbl = Table('test', metadata,
- Column('x', Integer, primary_key=True, autoincrement=False),
- Column('y', Integer, primary_key=True, autoincrement=False),
- mssql_clustered=True)
- self.assert_compile(schema.CreateTable(tbl),
- "CREATE TABLE test (x INTEGER NOT NULL, y INTEGER NOT NULL, "
- "PRIMARY KEY CLUSTERED (x, y))"
- )
-
- def test_table_pkc_clustering_2(self):
+ def test_table_pkc_clustering(self):
metadata = MetaData()
tbl = Table('test', metadata,
Column('x', Integer, autoincrement=False),