summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/suite
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-08-15 13:52:24 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-08-15 13:53:38 -0400
commite1129b2d3e21da8e7521211164418ebd23e46251 (patch)
tree4990d4b25ed9e8c55f21dc853a2c422fd6557332 /lib/sqlalchemy/testing/suite
parentb00b430e87512d721ad30c81fdcb35a5253dfc0a (diff)
downloadsqlalchemy-e1129b2d3e21da8e7521211164418ebd23e46251.tar.gz
- make these failure cases more specific to catch Oracle.
Would be nice to fix Oracle here
Diffstat (limited to 'lib/sqlalchemy/testing/suite')
-rw-r--r--lib/sqlalchemy/testing/suite/test_select.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_select.py b/lib/sqlalchemy/testing/suite/test_select.py
index 0bcd35fd2..e7de356b8 100644
--- a/lib/sqlalchemy/testing/suite/test_select.py
+++ b/lib/sqlalchemy/testing/suite/test_select.py
@@ -242,7 +242,7 @@ class CompoundSelectTest(fixtures.TablesTest):
[(2, 2, 3), (3, 3, 4)]
)
- @testing.requires.parens_in_union_contained_select
+ @testing.requires.parens_in_union_contained_select_w_limit_offset
def test_limit_offset_selectable_in_unions(self):
table = self.tables.some_table
s1 = select([table]).where(table.c.id == 2).\
@@ -256,7 +256,7 @@ class CompoundSelectTest(fixtures.TablesTest):
[(2, 2, 3), (3, 3, 4)]
)
- @testing.requires.parens_in_union_contained_select
+ @testing.requires.parens_in_union_contained_select_wo_limit_offset
def test_order_by_selectable_in_unions(self):
table = self.tables.some_table
s1 = select([table]).where(table.c.id == 2).\
@@ -283,7 +283,7 @@ class CompoundSelectTest(fixtures.TablesTest):
[(2, 2, 3), (3, 3, 4)]
)
- @testing.requires.parens_in_union_contained_select
+ @testing.requires.parens_in_union_contained_select_w_limit_offset
def test_limit_offset_in_unions_from_alias(self):
table = self.tables.some_table
s1 = select([table]).where(table.c.id == 2).\