Skip to content

Commit bd57dcd

Browse files
committed
Prerequisits for tests completed
To run the test for date and datetime outparams an additional database procedure is needed.
1 parent 9ae8c1f commit bd57dcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/outparams.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
CREATE OR REPLACE PROCEDURE procDateTimeOutParam(outParam1 OUT DATE, outParam2 OUT TIMESTAMP)
6767
IS
6868
BEGIN
69-
select sysdaten, systimestamp into outParam1, outParam2 from dual;
69+
select sysdate, systimestamp into outParam1, outParam2 from dual;
7070
END;
7171
/
7272

0 commit comments

Comments
 (0)