summaryrefslogtreecommitdiff
path: root/test/sql/test_query.py
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2009-08-18 05:28:05 +0000
committerPhilip Jenvey <pjenvey@underboss.org>2009-08-18 05:28:05 +0000
commitfc59a5e0c4731a29cc3e4852bc3629850e0c9a04 (patch)
tree99058e0d0e021f40b4e18ef0d3b919b644b17819 /test/sql/test_query.py
parentf465044d262dbbee8b5f3798822d41d79301735a (diff)
downloadsqlalchemy-fc59a5e0c4731a29cc3e4852bc3629850e0c9a04.tar.gz
oracle+zxjdbc returning support
Diffstat (limited to 'test/sql/test_query.py')
-rw-r--r--test/sql/test_query.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py
index 934bdadbe..3222ff6ef 100644
--- a/test/sql/test_query.py
+++ b/test/sql/test_query.py
@@ -80,8 +80,7 @@ class QueryTest(TestBase):
ret[c.key] = row[c]
return ret
- if (testing.against('firebird', 'postgresql', 'oracle', 'mssql') and
- not testing.against('oracle+zxjdbc')):
+ if testing.against('firebird', 'postgresql', 'oracle', 'mssql'):
test_engines = [
engines.testing_engine(options={'implicit_returning':False}),
engines.testing_engine(options={'implicit_returning':True}),
@@ -168,8 +167,7 @@ class QueryTest(TestBase):
eq_(r.inserted_primary_key, [12, 1])
def test_autoclose_on_insert(self):
- if (testing.against('firebird', 'postgresql', 'oracle', 'mssql') and
- not testing.against('oracle+zxjdbc')):
+ if testing.against('firebird', 'postgresql', 'oracle', 'mssql'):
test_engines = [
engines.testing_engine(options={'implicit_returning':False}),
engines.testing_engine(options={'implicit_returning':True}),