summaryrefslogtreecommitdiff
path: root/tests/test_mssql.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_mssql.py')
-rw-r--r--tests/test_mssql.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_mssql.py b/tests/test_mssql.py
index 04fc4d4..19453b2 100644
--- a/tests/test_mssql.py
+++ b/tests/test_mssql.py
@@ -116,6 +116,11 @@ class OpTest(TestBase):
op.alter_column("t", "c", server_default=False)
context.assert_()
+ def test_drop_column_w_schema(self):
+ context = op_fixture('mssql')
+ op.drop_column('t1', 'c1', schema='xyz')
+ context.assert_contains("ALTER TABLE xyz.t1 DROP COLUMN c1")
+
def test_drop_column_w_check(self):
context = op_fixture('mssql')
op.drop_column('t1', 'c1', mssql_drop_check=True)