File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
lib/thin/protocol/messages Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 55node-oracledb Release Notes
66=============================
77
8+ node-oracledb `v6.0.2 <https://github.com/oracle/node-oracledb/compare/v6.0.1...v6.0.2 >`__ (TBD)
9+ ------------------------------------------------------------------------------------------------
10+
11+ Thin Mode Changes
12+ +++++++++++++++++
13+
14+ #) Fixed bug when fetching rows containing data duplicated from a previous
15+ row that spans multiple packets.
16+ `Issue #1566 <https://github.com/oracle/node-oracledb/issues/1566 >`__ and
17+ `Issue #1565 <https://github.com/oracle/node-oracledb/issues/1565 >`__.
18+
19+
820node-oracledb `v6.0.1 <https://github.com/oracle/node-oracledb/compare/v6.0.0...v6.0.1 >`__ (07 Jun 2023)
921--------------------------------------------------------------------------------------------------------
1022
Original file line number Diff line number Diff line change @@ -582,7 +582,7 @@ class MessageWithData extends Message {
582582 }
583583
584584 getBitVector ( buf , numBytes ) {
585- this . bitVector = buf . readBytes ( numBytes ) ;
585+ this . bitVector = Buffer . from ( buf . readBytes ( numBytes ) ) ;
586586 }
587587
588588 processBindParams ( buf , params ) {
You can’t perform that action at this time.
0 commit comments