From 1122d355d15a8f6b8565df282eeb3463c31a512d Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 24 Feb 2014 12:59:32 -0500 Subject: - 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. --- test/sql/test_join_rewriting.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/sql/test_join_rewriting.py') diff --git a/test/sql/test_join_rewriting.py b/test/sql/test_join_rewriting.py index 082b6f0de..6fb108a27 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) -- cgit v1.2.1