From: Mike Bayer Date: Tue, 17 Sep 2019 16:49:46 +0000 (-0400) Subject: Add missing suite level requirements from #4234 X-Git-Tag: rel_1_4_0b1~723 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f92fa1b5dfceb5c079a46db598294db133cb0cac;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 --- diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index 27def1004b..75110ed036 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -380,6 +380,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."""