Skip to content

Commit b04239e

Browse files
committedJan 14, 2025··
test(it): Update integration test files to match the Oracle 23.6 docs
1 parent 0642e7a commit b04239e

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/TO_DATE.html
22
SELECT TO_DATE(
3-
'January 15, 1989, 11:00 A.M.',
4-
'Month dd, YYYY, HH:MI A.M.',
5-
'NLS_DATE_LANGUAGE = American')
6-
FROM DUAL;
3+
'January 15, 1989, 11:00 A.M.',
4+
'Month dd, YYYY, HH:MI A.M.',
5+
'NLS_DATE_LANGUAGE = American')
6+
FROM DUAL;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-- https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/TO_TIMESTAMP.html
22
SELECT TO_TIMESTAMP ('10-Sep-02 14:10:10.123000', 'DD-Mon-RR HH24:MI:SS.FF')
3-
FROM DUAL;
3+
FROM DUAL;
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/TO_TIMESTAMP.html
22
SELECT TO_TIMESTAMP ('10-Sept-02 14:10:10.123000'
3-
DEFAULT NULL ON CONVERSION ERROR,
4-
'DD-Mon-RR HH24:MI:SS.FF',
5-
'NLS_DATE_LANGUAGE = American') "Value"
3+
DEFAULT NULL ON CONVERSION ERROR,
4+
'DD-Mon-RR HH24:MI:SS.FF',
5+
'NLS_DATE_LANGUAGE = American') "Value"
66
FROM DUAL;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
-- https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/TO_TIMESTAMP_TZ.html
22
SELECT TO_TIMESTAMP_TZ('1999-12-01 11:00:00 -8:00',
3-
'YYYY-MM-DD HH:MI:SS TZH:TZM') FROM DUAL;
3+
'YYYY-MM-DD HH:MI:SS TZH:TZM') FROM DUAL;
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/TO_TIMESTAMP_TZ.html
22
SELECT order_id, line_item_id,
3-
CAST(NULL AS TIMESTAMP WITH LOCAL TIME ZONE) order_date
4-
FROM order_items
3+
CAST(NULL AS TIMESTAMP WITH LOCAL TIME ZONE) order_date
4+
FROM order_items
55
UNION
66
SELECT order_id, to_number(null), order_date
7-
FROM orders;
7+
FROM orders;
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/TO_TIMESTAMP_TZ.html
22
SELECT TO_TIMESTAMP_TZ('1999-13-01 11:00:00 -8:00'
3-
DEFAULT NULL ON CONVERSION ERROR,
4-
'YYYY-MM-DD HH:MI:SS TZH:TZM') "Value"
3+
DEFAULT NULL ON CONVERSION ERROR,
4+
'YYYY-MM-DD HH:MI:SS TZH:TZM') "Value"
55
FROM DUAL;

0 commit comments

Comments
 (0)
Please sign in to comment.