File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,12 @@ node-oracledb `v6.8.0 <https://github.com/oracle/node-oracledb/compare/v6.7.1...
1414Common 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.
Original file line number Diff line number Diff 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} ) ;
You can’t perform that action at this time.
0 commit comments