diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-02-16 12:01:17 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-02-16 12:01:17 -0500 |
| commit | 2f27dd35020be46b35717cffdccaefc97b5f67dd (patch) | |
| tree | c653c745e03be99faad0b1d0fd230ad5af3e412f /test/sql | |
| parent | b0c0659f47ff802cfe7b3a3785a4d248f4d97f8b (diff) | |
| download | sqlalchemy-2f27dd35020be46b35717cffdccaefc97b5f67dd.tar.gz | |
Update test reqs for mariadb 10.4, 10.5
A few except / union tests seem to be passing on these two
versions which are now up on CI.
Change-Id: I0d65795357a6d03962d7182dda198d890a4c3f97
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_query.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py index ce57260b7..aa5e913d5 100644 --- a/test/sql/test_query.py +++ b/test/sql/test_query.py @@ -1208,7 +1208,9 @@ class CompoundTest(fixtures.TestBase): "firebird", "has trouble extracting anonymous column from union subquery", ) - @testing.fails_on("mysql", "FIXME: unknown") + @testing.fails_on( + testing.requires._mysql_not_mariadb_104, "FIXME: unknown" + ) @testing.fails_on("sqlite", "FIXME: unknown") def test_union_all(self): e = union_all( @@ -1312,7 +1314,8 @@ class CompoundTest(fixtures.TestBase): eq_(found2, wanted) @testing.fails_on( - ["sqlite", "mysql"], "Can't handle this style of nesting" + ["sqlite", testing.requires._mysql_not_mariadb_104], + "Can't handle this style of nesting", ) @testing.requires.except_ def test_except_style3(self): @@ -1345,7 +1348,8 @@ class CompoundTest(fixtures.TestBase): @testing.requires.intersect @testing.fails_on( - ["sqlite", "mysql"], "sqlite can't handle leading parenthesis" + ["sqlite", testing.requires._mysql_not_mariadb_104], + "sqlite can't handle leading parenthesis", ) def test_intersect_unions(self): u = intersect( |
