From 5e48f8445c33a45ba36c9612f52fcaeca5edd27f Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 25 Jan 2019 11:36:54 -0500 Subject: 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 --- lib/sqlalchemy/testing/suite/test_ddl.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'lib/sqlalchemy/testing') 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): -- cgit v1.2.1