]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Allow Oracle CLOB/NCLOB/BLOB in returning
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 28 Jan 2021 16:04:29 +0000 (11:04 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 28 Jan 2021 18:21:32 +0000 (13:21 -0500)
commit03179a96bfb9dd7ce17274fed44908c25229dedf
tree1aa494930a32c919e1fe6b9700ae5b55200be145
parente3fbbf830fef9bedee7b26460c79843780962bc0
Allow Oracle CLOB/NCLOB/BLOB in returning

Fixed bug in Oracle dialect where retriving a CLOB/BLOB column via
:meth:`_dml.Insert.returning` would fail as the LOB value would need to be
read when returned; additionally, repaired support for retrieval of Unicode
values via RETURNING under Python 2.

As of yet, we still don't know how to reproduce the
ORA-24813 error indicated in the issue.

Fixes: #5812
Change-Id: I666f893e762dfa4d34dd2e324480565b226fb3a4
doc/build/changelog/unreleased_13/5812.rst [new file with mode: 0644]
lib/sqlalchemy/dialects/oracle/cx_oracle.py
test/dialect/oracle/test_types.py