diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-10-28 01:49:48 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-10-28 01:49:48 -0400 |
| commit | 50d3b85c693a4ca673bcabd711f130ae58111f16 (patch) | |
| tree | 71d8aff8ac02b939730d4c0424f9598c5570527c /test/sql | |
| parent | c262184ae5bac969b18eff8e10ba6d94c229499d (diff) | |
| download | sqlalchemy-50d3b85c693a4ca673bcabd711f130ae58111f16.tar.gz | |
open some compound tests for mysql 8.0.31
Not sure of exact version but as we have done a major
rebuild of CI, newer mysql 8.0 is passing on these.
Change-Id: Ibcfe0ce519ab6a2941ca514b4254944769b60df4
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_query.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py index 68a3630aa..ef94cc089 100644 --- a/test/sql/test_query.py +++ b/test/sql/test_query.py @@ -1230,7 +1230,7 @@ class CompoundTest(fixtures.TablesTest): @testing.crashes("oracle", "FIXME: unknown, verify not fails_on") @testing.fails_on( - testing.requires._mysql_not_mariadb_104, "FIXME: unknown" + testing.requires._mysql_not_mariadb_104_not_mysql8031, "FIXME: unknown" ) @testing.fails_on("sqlite", "FIXME: unknown") def test_union_all(self, connection): @@ -1351,7 +1351,7 @@ class CompoundTest(fixtures.TablesTest): eq_(found2, wanted) @testing.fails_on( - ["sqlite", testing.requires._mysql_not_mariadb_104], + ["sqlite", testing.requires._mysql_not_mariadb_104_not_mysql8031], "Can't handle this style of nesting", ) @testing.requires.except_ @@ -1389,7 +1389,7 @@ class CompoundTest(fixtures.TablesTest): @testing.requires.intersect @testing.fails_on( - ["sqlite", testing.requires._mysql_not_mariadb_104], + ["sqlite", testing.requires._mysql_not_mariadb_104_not_mysql8031], "sqlite can't handle leading parenthesis", ) def test_intersect_unions(self, connection): |
