File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -317,7 +317,10 @@ describe('163. executeMany.js', function() {
317
317
318
318
it ( '163.6 shows dmlRowCounts' , function ( done ) {
319
319
320
- if ( oracledb . oracleClientVersion < 1201000200 ) { this . skip ( ) ; }
320
+ if ( ( oracledb . oracleClientVersion < 1201000200 )
321
+ || ( conn . oracleServerVersion < 1201000200 ) ) {
322
+ this . skip ( ) ;
323
+ }
321
324
322
325
var childTable = "nodb_tab_child_one" ;
323
326
var parentTable = "nodb_tab_parent_one" ;
@@ -345,7 +348,10 @@ describe('163. executeMany.js', function() {
345
348
346
349
it ( '163.7 shows batchErrors behavior' , function ( done ) {
347
350
348
- if ( oracledb . oracleClientVersion < 1201000200 ) { this . skip ( ) ; }
351
+ if ( ( oracledb . oracleClientVersion < 1201000200 )
352
+ || ( conn . oracleServerVersion < 1201000200 ) ) {
353
+ this . skip ( ) ;
354
+ }
349
355
350
356
var childTable = "nodb_tab_child_two" ;
351
357
var parentTable = "nodb_tab_parent_two" ;
You can’t perform that action at this time.
0 commit comments