Skip to content

Commit 9d60240

Browse files
Fixed bug preventing binding OUT data of type DB_TYPE_UROWID that
exceed 3950 bytes in length.
1 parent e086953 commit 9d60240

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

doc/src/release_notes.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ Thin Mode Changes
2424
cursor.
2525
#) Fixed bug preventing a cursor from being reused after it was bound as a
2626
REF CURSOR to a PL/SQL block that closes it.
27+
#) Fixed bug preventing binding OUT data of type
28+
:data:`~oracledb.DB_TYPE_UROWID` that exceed 3950 bytes in length.
2729

2830
Thick Mode Changes
2931
++++++++++++++++++

src/oracledb/impl/thin/constants.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ DEF TNS_MAX_CURSORS_TO_CLOSE = 500
658658
DEF TNS_TXN_IN_PROGRESS = 0x00000002
659659
DEF TNS_MAX_CONNECT_DATA = 230
660660
DEF TNS_CHUNK_SIZE = 32767
661-
DEF TNS_MAX_UROWID_LENGTH = 3950
661+
DEF TNS_MAX_UROWID_LENGTH = 5267
662662

663663
# base 64 encoding alphabet
664664
DEF TNS_BASE64_ALPHABET = \

0 commit comments

Comments
 (0)