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 5
5
node-oracledb Release Notes
6
6
=============================
7
7
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
+
8
20
node-oracledb `v6.0.1 <https://github.com/oracle/node-oracledb/compare/v6.0.0...v6.0.1 >`__ (07 Jun 2023)
9
21
--------------------------------------------------------------------------------------------------------
10
22
Original file line number Diff line number Diff line change @@ -582,7 +582,7 @@ class MessageWithData extends Message {
582
582
}
583
583
584
584
getBitVector ( buf , numBytes ) {
585
- this . bitVector = buf . readBytes ( numBytes ) ;
585
+ this . bitVector = Buffer . from ( buf . readBytes ( numBytes ) ) ;
586
586
}
587
587
588
588
processBindParams ( buf , params ) {
You can’t perform that action at this time.
0 commit comments