summaryrefslogtreecommitdiff
path: root/test/engine/test_execute.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-01-22 22:37:23 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2012-01-22 22:37:23 -0500
commit3e6d1b0845986a72c28531f7eecab0a3831d20b3 (patch)
tree8ec5f1c5efbdfbe058a667ba4acc0486bb9dbabd /test/engine/test_execute.py
parent21fbd8320b8bec9ebf78bce5cf1137b1648c2170 (diff)
downloadsqlalchemy-3e6d1b0845986a72c28531f7eecab0a3831d20b3.tar.gz
exception pickling fails on cx_oracle
Diffstat (limited to 'test/engine/test_execute.py')
-rw-r--r--test/engine/test_execute.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py
index a2b68e955..e05732eb1 100644
--- a/test/engine/test_execute.py
+++ b/test/engine/test_execute.py
@@ -196,6 +196,9 @@ class ExecuteTest(fixtures.TestBase):
"Packages the cursor in the exception")
@testing.fails_on("mysql+oursql",
"Exception doesn't come back exactly the same from pickle")
+ @testing.fails_on("oracle+cx_oracle",
+ "cx_oracle exception seems to be having "
+ "some issue with pickling")
def test_stmt_exception_pickleable_plus_dbapi(self):
raw = testing.db.raw_connection()
the_orig = None