From: Mike Bayer Date: Tue, 17 Sep 2019 16:49:46 +0000 (-0400) Subject: Add missing suite level requirements from #4234 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c863abc6055cf6bd1dd7d5b4a49c44204615226b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Add missing suite level requirements from #4234 In 9d5e117f6fcc38d8773bc943c615888dc8a3a819 we added suite-level requirements but did not add them to the base, causing failures in third party dialect test suites. Change-Id: I030b5d0fd957814dfce77a71b59babd9b5e3b1bc References: #4234 (cherry picked from commit f92fa1b5dfceb5c079a46db598294db133cb0cac) --- diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index c34420ee95..ab133f3d56 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -351,6 +351,23 @@ class SuiteRequirements(Requirements): return exclusions.closed() + @property + def cross_schema_fk_reflection(self): + """target system must support reflection of inter-schema foreign keys + + """ + return exclusions.closed() + + @property + def implicit_default_schema(self): + """target system has a strong concept of 'default' schema that can + be referred to implicitly. + + basically, PostgreSQL. + + """ + return exclusions.closed() + @property def server_side_cursors(self): """Target dialect must support server side cursors."""