summaryrefslogtreecommitdiff
path: root/test/sql/test_query.py
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2021-10-30 22:24:51 +0200
committerMike Bayer <mike_mp@zzzcomputing.com>2021-10-31 12:31:56 -0400
commited78e679eafe787f4c152b78726bf1e1b91ab465 (patch)
tree9ba564f0ad1f0569650fcf803157bf4576fc738f /test/sql/test_query.py
parent4427ec68219b624a89dda4acb994c80fa0d8a5d7 (diff)
downloadsqlalchemy-ed78e679eafe787f4c152b78726bf1e1b91ab465.tar.gz
Remove deprecated dialects and drivers
Fixes: #7258 Change-Id: I3577f665eca04f2632b69bcb090f0a4ec9271db9
Diffstat (limited to 'test/sql/test_query.py')
-rw-r--r--test/sql/test_query.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py
index 0d8170113..68a3630aa 100644
--- a/test/sql/test_query.py
+++ b/test/sql/test_query.py
@@ -73,9 +73,6 @@ class QueryTest(fixtures.TablesTest):
test_needs_acid=True,
)
- @testing.fails_on(
- "firebird", "kinterbasdb doesn't send full type information"
- )
def test_order_by_label(self, connection):
"""test that a label within an ORDER BY works on each backend.
@@ -825,8 +822,6 @@ class QueryTest(fixtures.TablesTest):
eq_(len(compiled._bind_processors), 1)
- @testing.fails_on("firebird", "uses sql-92 rules")
- @testing.fails_on("sybase", "uses sql-92 rules")
@testing.skip_if(["mssql"])
def test_bind_in(self, connection):
"""test calling IN against a bind parameter.
@@ -1190,7 +1185,6 @@ class CompoundTest(fixtures.TablesTest):
)
eq_(found2, wanted)
- @testing.fails_on("firebird", "doesn't like ORDER BY with UNIONs")
def test_union_ordered(self, connection):
t1, t2, t3 = self.tables("t1", "t2", "t3")
@@ -1212,7 +1206,6 @@ class CompoundTest(fixtures.TablesTest):
]
eq_(connection.execute(u).fetchall(), wanted)
- @testing.fails_on("firebird", "doesn't like ORDER BY with UNIONs")
@testing.requires.subqueries
def test_union_ordered_alias(self, connection):
t1, t2, t3 = self.tables("t1", "t2", "t3")
@@ -1237,10 +1230,6 @@ class CompoundTest(fixtures.TablesTest):
@testing.crashes("oracle", "FIXME: unknown, verify not fails_on")
@testing.fails_on(
- "firebird",
- "has trouble extracting anonymous column from union subquery",
- )
- @testing.fails_on(
testing.requires._mysql_not_mariadb_104, "FIXME: unknown"
)
@testing.fails_on("sqlite", "FIXME: unknown")