summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-10-13 12:37:29 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-10-13 12:37:29 -0400
commit97553f301529dd9d1cbfe884927b53dc2306b10a (patch)
tree13fe89e646bb1aa80f467c6b49531311ef622b94
parentfe0a97972624d68f6098676d26f2f27099e80cd6 (diff)
downloadsqlalchemy-97553f301529dd9d1cbfe884927b53dc2306b10a.tar.gz
- additional issues fixed in mysqlconnector 2.0.1
-rw-r--r--test/sql/test_query.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py
index aa153e620..43afb131b 100644
--- a/test/sql/test_query.py
+++ b/test/sql/test_query.py
@@ -288,9 +288,6 @@ class QueryTest(fixtures.TestBase):
l.append(row)
self.assert_(len(l) == 3)
- @testing.fails_if(
- lambda: util.py3k and testing.against('mysql+mysqlconnector'),
- "bug in mysqlconnector")
@testing.requires.subqueries
def test_anonymous_rows(self):
users.insert().execute(
@@ -502,9 +499,6 @@ class QueryTest(fixtures.TestBase):
lambda: row[accessor]
)
- @testing.fails_if(
- lambda: util.py3k and testing.against('mysql+mysqlconnector'),
- "bug in mysqlconnector")
@testing.requires.boolean_col_expressions
def test_or_and_as_columns(self):
true, false = literal(True), literal(False)
@@ -613,9 +607,6 @@ class QueryTest(fixtures.TestBase):
c = testing.db.connect()
assert c.execute(s, id=7).fetchall()[0]['user_id'] == 7
- @testing.fails_if(
- lambda: util.py3k and testing.against('mysql+mysqlconnector'),
- "bug in mysqlconnector")
def test_repeated_bindparams(self):
"""Tests that a BindParam can be used more than once.
@@ -1307,9 +1298,6 @@ class QueryTest(fixtures.TestBase):
# Null values are not outside any set
assert len(r) == 0
- @testing.fails_if(
- lambda: util.py3k and testing.against('mysql+mysqlconnector'),
- "bug in mysqlconnector")
@testing.emits_warning('.*empty sequence.*')
@testing.fails_on('firebird', "uses sql-92 rules")
@testing.fails_on('sybase', "uses sql-92 rules")
@@ -1336,9 +1324,6 @@ class QueryTest(fixtures.TestBase):
r = s.execute(search_key=None).fetchall()
assert len(r) == 0
- @testing.fails_if(
- lambda: util.py3k and testing.against('mysql+mysqlconnector'),
- "bug in mysqlconnector")
@testing.emits_warning('.*empty sequence.*')
def test_literal_in(self):
"""similar to test_bind_in but use a bind with a value."""