Skip to content

Commit

Permalink
test: removed custom test from oracle for asCallback()
Browse files Browse the repository at this point in the history
  • Loading branch information
gabolera committed May 10, 2024
1 parent 4dbc18e commit 3172b7b
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions test/integration2/query/insert/inserts.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,33 +359,6 @@ describe('Inserts', function () {
],
'id'
)
.testSql(function (tester) {
tester(
'oracledb',
'begin execute immediate \'insert into "test_table_two" ("account_id", "details", "status") values (:1, :2, :3) returning "id" into :4\' using ?, ?, ?, out ?; execute immediate \'insert into "test_table_two" ("account_id", "details", "status") values (:1, :2, :3) returning "id" into :4\' using ?, ?, ?, out ?; execute immediate \'insert into "test_table_two" ("account_id", "details", "status") values (:1, :2, :3) returning "id" into :4\' using ?, ?, ?, out ?;end;',
[
1,
'Lorem ipsum Minim nostrud Excepteur consectetur enim ut qui sint in veniam in nulla anim do cillum sunt voluptate Duis non incididunt.',
0,
function (v) {
return v.toString() === '[object ReturningHelper:id]';
},
2,
'Lorem ipsum Minim nostrud Excepteur consectetur enim ut qui sint in veniam in nulla anim do cillum sunt voluptate Duis non incididunt.',
1,
function (v) {
return v.toString() === '[object ReturningHelper:id]';
},
3,
'',
1,
function (v) {
return v.toString() === '[object ReturningHelper:id]';
},
],
['1', '2', '3']
);
})
.asCallback(function (err) {
if (err) return ok(err);
ok();
Expand Down

0 comments on commit 3172b7b

Please sign in to comment.