diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-03-14 17:31:59 -0700 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-03-14 17:31:59 -0700 |
commit | 101cde7894a9eadc3c8cc3a855a94da390c4ac39 (patch) | |
tree | b28598c9b0aa532b80b83ae4ce19aa9f54e05cfb | |
parent | 768bd7ec0a553273253a7f0306c19a67561f8702 (diff) | |
download | sqlalchemy-101cde7894a9eadc3c8cc3a855a94da390c4ac39.tar.gz |
another oracle failure
-rw-r--r-- | test/orm/inheritance/test_assorted_poly.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/orm/inheritance/test_assorted_poly.py b/test/orm/inheritance/test_assorted_poly.py index 1ad136b57..985d892d8 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, \ |