summaryrefslogtreecommitdiff
path: root/test/sql/test_rowcount.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2017-09-01 00:11:10 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2017-09-11 14:17:10 -0400
commit31f80b9eaeb3c3435b7f6679b41e434478b1d11c (patch)
tree9802d4470d78768ba2a8812b47fae0f91e689d5c /test/sql/test_rowcount.py
parent4c97ea116c3686cb03f566f16b0a0e9a9fd33968 (diff)
downloadsqlalchemy-oracle_numeric.tar.gz
Refactor for cx_Oracle version 6oracle_numeric
Drops support for cx_Oracle prior to version 5.x, reworks numeric and binary support. Fixes: #4064 Change-Id: Ib9ae9aba430c15cd2a6eeb4e5e3fd8e97b5fe480
Diffstat (limited to 'test/sql/test_rowcount.py')
-rw-r--r--test/sql/test_rowcount.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/sql/test_rowcount.py b/test/sql/test_rowcount.py
index 009911538..ea29bcf7e 100644
--- a/test/sql/test_rowcount.py
+++ b/test/sql/test_rowcount.py
@@ -66,7 +66,8 @@ class FoundRowsTest(fixtures.TestBase, AssertsExecutionResults):
assert r.rowcount == 3
@testing.skip_if(
- "oracle", "temporary skip until cx_oracle refactor is merged")
+ testing.requires.oracle5x,
+ "unknown DBAPI error fixed in later version")
@testing.requires.sane_rowcount_w_returning
def test_update_rowcount_return_defaults(self):
department = employees_table.c.department