We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47208ff commit efc76ffCopy full SHA for efc76ff
doc/src/release_notes.rst
@@ -19,6 +19,9 @@ oracledb `3.4.0 <https://github.com/oracle/python-oracledb/compare/v3.3.0...v3.4
19
Thin Mode Changes
20
+++++++++++++++++
21
22
+#) Internal change: small performance improvement sending bytes on the
23
+ network transport.
24
+
25
Thick Mode Changes
26
++++++++++++++++++
27
src/oracledb/impl/thin/transport.pyx
@@ -367,7 +367,7 @@ cdef class Transport:
367
"""
368
Writes a packet on the transport.
369
370
- data = bytes(buf._data_view[:buf._pos])
+ data = buf._data[:buf._pos]
371
if DEBUG_PACKETS:
372
self._print_packet("Sending packet", data)
373
try:
0 commit comments