Skip to content

Commit 29d8819

Browse files
committed
Release note updates and minor test updates
1 parent 32e70a4 commit 29d8819

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

doc/src/release_notes.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ node-oracledb `v6.8.0 <https://github.com/oracle/node-oracledb/compare/v6.7.1...
1414
Common Changes
1515
++++++++++++++
1616

17-
#) Added a new :attr:`oracledb.dbObjectTypeHandler` property in which a user
18-
function can be specified when using DbObjects to modify the properties
19-
before it is returned to the application.
17+
#) Added new :attr:`oracledb.dbObjectTypeHandler` property in which a user
18+
function can be specified when using DbObjects to modify the database
19+
object attributes before the database object is returned to the
20+
application.
2021

21-
#) Added support for BigInt values to be passed to Database Objects. This is
22+
#) Added support for BigInt values to be passed to database objects. This is
2223
done by using the new property :attr:`oracledb.dbObjectTypeHandler` which
2324
can be used to convert strings passed to the dbObject Type Handler to
2425
BigInt.

test/longDMLBind.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ describe('125. longDMLBind.js', function() {
172172
const sql_query = "select content from " + tableName + " where id = " + insertID;
173173
const result = await connection.execute(sql_query);
174174
assert(result);
175+
assert.strictEqual(result.rows[0][0].length, expected.length);
175176
assert.strictEqual(result.rows[0][0], expected);
176-
177177
};
178178

179179
});

0 commit comments

Comments
 (0)