Skip to content

Commit 1a92bef

Browse files
If we are telling the server that the client doesn't support the end of
request bit, then we shouldn't assume the server will ever send it!
1 parent 659cf35 commit 1a92bef

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/oracledb/impl/thin/capabilities.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ cdef class Capabilities:
6262
if self.ttc_field_version < TNS_CCAP_FIELD_VERSION_23_4 \
6363
or not server_caps[TNS_CCAP_TTC4] & TNS_CCAP_END_OF_REQUEST:
6464
self.compile_caps[TNS_CCAP_TTC4] ^= TNS_CCAP_END_OF_REQUEST
65+
self.supports_end_of_request = False
6566

6667
@cython.boundscheck(False)
6768
cdef void _adjust_for_server_runtime_caps(self, bytearray server_caps):

0 commit comments

Comments
 (0)