summaryrefslogtreecommitdiff
path: root/test/sql/test_query.py
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2009-08-09 00:56:52 +0000
committerPhilip Jenvey <pjenvey@underboss.org>2009-08-09 00:56:52 +0000
commita53d4e2ab48a003a957ba374c65ea999dcd962e4 (patch)
tree5fe59c06d9895a81a7682262ec4e02112ba8194d /test/sql/test_query.py
parentf0b848c86f62ab457fc3e2aba3d161d4334d861d (diff)
downloadsqlalchemy-a53d4e2ab48a003a957ba374c65ea999dcd962e4.tar.gz
o oracle+zxjdbc type handling additions
o avoid returning tests on oracle+zxjdbc for now
Diffstat (limited to 'test/sql/test_query.py')
-rw-r--r--test/sql/test_query.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py
index 0e3b9dff2..d10313d14 100644
--- a/test/sql/test_query.py
+++ b/test/sql/test_query.py
@@ -80,7 +80,8 @@ class QueryTest(TestBase):
ret[c.key] = row[c]
return ret
- if testing.against('firebird', 'postgresql', 'oracle', 'mssql'):
+ if (testing.against('firebird', 'postgresql', 'oracle', 'mssql') and
+ not testing.against('oracle+zxjdbc')):
test_engines = [
engines.testing_engine(options={'implicit_returning':False}),
engines.testing_engine(options={'implicit_returning':True}),
@@ -167,7 +168,8 @@ class QueryTest(TestBase):
eq_(r.inserted_primary_key, [12, 1])
def test_autoclose_on_insert(self):
- if testing.against('firebird', 'postgresql', 'oracle', 'mssql'):
+ if (testing.against('firebird', 'postgresql', 'oracle', 'mssql') and
+ not testing.against('oracle+zxjdbc')):
test_engines = [
engines.testing_engine(options={'implicit_returning':False}),
engines.testing_engine(options={'implicit_returning':True}),