summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/suite/test_ddl.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-01-25 11:36:54 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2019-01-25 11:36:54 -0500
commit5e48f8445c33a45ba36c9612f52fcaeca5edd27f (patch)
treebb5443231042b76204106dffc3c59446a2f93604 /lib/sqlalchemy/testing/suite/test_ddl.py
parent9331613fc83c3b1b428dc7b8ef44ed4e9b1973da (diff)
downloadsqlalchemy-5e48f8445c33a45ba36c9612f52fcaeca5edd27f.tar.gz
Fix mssql quote schema warning
The deprecations review didn't include tests of identifier_preparer.quote.force for backends, so MSSQL slipped through. We have to fully reimplement the deprecation warning here so that it passes tests which are now enabled for all backends. Change-Id: I9d07e6766e16b5a35b7f7566f1daf94b04346270
Diffstat (limited to 'lib/sqlalchemy/testing/suite/test_ddl.py')
-rw-r--r--lib/sqlalchemy/testing/suite/test_ddl.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_ddl.py b/lib/sqlalchemy/testing/suite/test_ddl.py
index fe6911c40..81a55e18a 100644
--- a/lib/sqlalchemy/testing/suite/test_ddl.py
+++ b/lib/sqlalchemy/testing/suite/test_ddl.py
@@ -14,12 +14,13 @@ from ... import Table
class TableDDLTest(fixtures.TestBase):
__backend__ = True
- def _simple_fixture(self):
+ def _simple_fixture(self, schema=None):
return Table(
"test_table",
self.metadata,
Column("id", Integer, primary_key=True, autoincrement=False),
Column("data", String(50)),
+ schema=schema,
)
def _underscore_fixture(self):
@@ -43,6 +44,13 @@ class TableDDLTest(fixtures.TestBase):
table.create(config.db, checkfirst=False)
self._simple_roundtrip(table)
+ @requirements.create_table
+ @util.provide_metadata
+ def test_create_table_schema(self):
+ table = self._simple_fixture(schema=config.test_schema)
+ table.create(config.db, checkfirst=False)
+ self._simple_roundtrip(table)
+
@requirements.drop_table
@util.provide_metadata
def test_drop_table(self):