From: Mike Bayer Date: Thu, 15 Mar 2012 00:31:59 +0000 (-0700) Subject: another oracle failure X-Git-Tag: rel_0_7_6~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=101cde7894a9eadc3c8cc3a855a94da390c4ac39;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git another oracle failure --- diff --git a/test/orm/inheritance/test_assorted_poly.py b/test/orm/inheritance/test_assorted_poly.py index 1ad136b575..985d892d81 100644 --- a/test/orm/inheritance/test_assorted_poly.py +++ b/test/orm/inheritance/test_assorted_poly.py @@ -1494,6 +1494,10 @@ class Ticket2419Test(fixtures.DeclarativeMappedTest): test_needs_autoincrement=True) b_id = Column(Integer, ForeignKey('b.id')) + @testing.fails_on("oracle", + "seems like oracle's query engine can't " + "handle this, not clear if there's an " + "expression-level bug on our end though") def test_join_w_eager_w_any(self): A, B, C, D, E = self.classes.A, self.classes.B, \ self.classes.C, self.classes.D, \