From a4f1d2ec6e809b9bb6df610f70bb74e38262cfac Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 19 Feb 2014 20:15:30 -0500 Subject: [PATCH] skip this on oracle --- test/sql/test_join_rewriting.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/sql/test_join_rewriting.py b/test/sql/test_join_rewriting.py index 30ab1500bc..cf9878956e 100644 --- a/test/sql/test_join_rewriting.py +++ b/test/sql/test_join_rewriting.py @@ -462,6 +462,9 @@ class JoinExecTest(_JoinRewriteTestBase, fixtures.TestBase): for col in selectable.inner_columns: assert col in result._metadata._keymap + @testing.skip_if("oracle", "oracle's cranky") + def test_a_atobalias_balias_c_w_exists(self): + super(JoinExecTest, self).test_a_atobalias_balias_c_w_exists() class DialectFlagTest(fixtures.TestBase, AssertsCompiledSQL): def test_dialect_flag(self): -- 2.47.3