Skip to content

Commit

Permalink
Prerequisits for tests completed
Browse files Browse the repository at this point in the history
To run the test for date and datetime outparams
an additional database procedure is needed.
  • Loading branch information
magomi committed Nov 6, 2014
1 parent 9ae8c1f commit bd57dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/outparams.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
CREATE OR REPLACE PROCEDURE procDateTimeOutParam(outParam1 OUT DATE, outParam2 OUT TIMESTAMP)
IS
BEGIN
select sysdaten, systimestamp into outParam1, outParam2 from dual;
select sysdate, systimestamp into outParam1, outParam2 from dual;
END;
/
Expand Down

0 comments on commit bd57dcd

Please sign in to comment.