diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2022-06-10 15:11:44 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-06-10 15:11:44 +0000 |
| commit | b171f5d2e488c46a664847644e65d5dc03759840 (patch) | |
| tree | d039ee975085c0b23ab6827fe2e583a052d86185 /test | |
| parent | 2e97c6a2e44bec28e048a6d353f120e4d6f26996 (diff) | |
| parent | 07678e0e34210f9485dbd8fd3a25b739adb7cc64 (diff) | |
| download | sqlalchemy-b171f5d2e488c46a664847644e65d5dc03759840.tar.gz | |
Merge "update cx_Oracle / oracledb LOB handling" into main
Diffstat (limited to 'test')
| -rw-r--r-- | test/dialect/oracle/test_dialect.py | 4 | ||||
| -rw-r--r-- | test/dialect/oracle/test_types.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/dialect/oracle/test_dialect.py b/test/dialect/oracle/test_dialect.py index ad716d8c8..98eb76c18 100644 --- a/test/dialect/oracle/test_dialect.py +++ b/test/dialect/oracle/test_dialect.py @@ -380,7 +380,7 @@ class EncodingErrorsTest(fixtures.TestBase): [ mock.call.var( mock.ANY, - None, + mock.ANY, cursor.arraysize, encodingErrors="ignore", ) @@ -411,7 +411,7 @@ class EncodingErrorsTest(fixtures.TestBase): else: eq_( cursor.mock_calls, - [mock.call.var(mock.ANY, None, cursor.arraysize)], + [mock.call.var(mock.ANY, mock.ANY, cursor.arraysize)], ) diff --git a/test/dialect/oracle/test_types.py b/test/dialect/oracle/test_types.py index 131b6fa34..76fc7d542 100644 --- a/test/dialect/oracle/test_types.py +++ b/test/dialect/oracle/test_types.py @@ -1188,9 +1188,9 @@ class SetInputSizesTest(fixtures.TestBase): (oracle.BINARY_FLOAT, 25.34534, "NATIVE_FLOAT", False), (oracle.DOUBLE_PRECISION, 25.34534, None, False), (Unicode(30), "test", "NCHAR", True), - (UnicodeText(), "test", "NCLOB", True), + (UnicodeText(), "test", "DB_TYPE_NVARCHAR", True), (Unicode(30), "test", None, False), - (UnicodeText(), "test", "CLOB", False), + (UnicodeText(), "test", "DB_TYPE_NVARCHAR", False), (String(30), "test", None, False), (CHAR(30), "test", "FIXED_CHAR", False), (NCHAR(30), "test", "FIXED_NCHAR", False), |
