summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2009-08-18 05:51:32 +0000
committerPhilip Jenvey <pjenvey@underboss.org>2009-08-18 05:51:32 +0000
commit8e551942c0b5fc489ce6411cbbbffc3d4066dc46 (patch)
treecdbfa1053450a70755a94fcdb107acedd7426a1d /test/sql
parent19b88028924de7016c3792fb0d868dd713644078 (diff)
downloadsqlalchemy-8e551942c0b5fc489ce6411cbbbffc3d4066dc46.tar.gz
this workaround isn't necessary
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_returning.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/sql/test_returning.py b/test/sql/test_returning.py
index 02d906dd8..d76c76173 100644
--- a/test/sql/test_returning.py
+++ b/test/sql/test_returning.py
@@ -93,8 +93,6 @@ class ReturningTest(TestBase, AssertsExecutionResults):
eq_(result.fetchall(), [(1,)])
- @testing.crashes('oracle+zxjdbc', 'Triggers a "No more data to read from socket" and '
- 'prevents table from being dropped')
@testing.fails_on('postgresql', '')
@testing.fails_on('oracle', '')
def test_executemany():
@@ -112,8 +110,7 @@ class ReturningTest(TestBase, AssertsExecutionResults):
test_executemany()
result3 = table.insert().returning(table.c.id).execute({'persons': 4, 'full': False})
- next = testing.against('oracle+zxjdbc') and 2 or 4
- eq_([dict(row) for row in result3], [{'id': next}])
+ eq_([dict(row) for row in result3], [{'id': 4}])
@testing.exclude('firebird', '<', (2, 1), '2.1+ feature')