From: Mike Bayer Date: Mon, 24 Feb 2014 17:59:32 +0000 (-0500) Subject: - we're testing a query here with non-standard aliasing which fails on PG and MySQL. X-Git-Tag: rel_0_9_4~109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1122d355d15a8f6b8565df282eeb3463c31a512d;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - we're testing a query here with non-standard aliasing which fails on PG and MySQL. Leave this test in place as its ultimately a SQLite use case, but only test on SQLite. We perhaps should add another test case that works on all platforms. --- diff --git a/test/sql/test_join_rewriting.py b/test/sql/test_join_rewriting.py index 082b6f0dea..6fb108a27a 100644 --- a/test/sql/test_join_rewriting.py +++ b/test/sql/test_join_rewriting.py @@ -530,6 +530,12 @@ class JoinExecTest(_JoinRewriteTestBase, fixtures.TestBase): def test_a_atobalias_balias_c_w_exists(self): super(JoinExecTest, self).test_a_atobalias_balias_c_w_exists() + @testing.only_on("sqlite", "non-standard aliasing rules used at the moment, " + "possibly fix this or add another test that uses " + "cross-compatible aliasing") + def test_b_ab1_union_b_ab2(self): + super(JoinExecTest, self).test_b_ab1_union_b_ab2() + class DialectFlagTest(fixtures.TestBase, AssertsCompiledSQL): def test_dialect_flag(self): d1 = default.DefaultDialect(supports_right_nested_joins=True)