File tree Expand file tree Collapse file tree 5 files changed +620
-577
lines changed
src/oracle_test/regress/expected Expand file tree Collapse file tree 5 files changed +620
-577
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ CREATE INDEX TEST_DATE_BRIN ON TEST_DATE USING BRIN (A);
280280-- Build tables and test 'NLS_TIMESTAMP_FORMAT' parameter, don't do the validity check.
281281CREATE TABLE TEST_TIMESTAMP(a TIMESTAMP);
282282SET NLS_TIMESTAMP_FORMAT='YYYY-MM-DD HH24:MI:SS.FF9';
283- -- effective number of fractional seconds is 6,the part of excess is 0
283+ -- effective number of fractional seconds is 6, the part of excess is 0
284284INSERT INTO TEST_TIMESTAMP VALUES('1990-1-19 11:11:11.123456789');
285285INSERT INTO TEST_TIMESTAMP VALUES('1990-2-19'); -- hour、minute、second、fractional second is zero.
286286INSERT INTO TEST_TIMESTAMP VALUES('1990-2-19 11:11:11');
@@ -550,7 +550,7 @@ CREATE INDEX TEST_TIMESTAMP_BRIN ON TEST_TIMESTAMP USING BRIN (A);
550550-- Build tables and test 'NLS_TIMESTAMP_TZ_FORMAT' parameter, don't do the validity check.
551551CREATE TABLE TEST_TIMESTAMPTZ(a TIMESTAMP WITH TIME ZONE);
552552SET NLS_TIMESTAMP_TZ_FORMAT='YYYY-MM-DD HH24:MI:SS.FF9';
553- -- effective number of fractional seconds is 6,the part of excess is 0
553+ -- effective number of fractional seconds is 6, the part of excess is 0
554554INSERT INTO TEST_TIMESTAMPTZ VALUES('1990-1-19 11:11:11.123456789');
555555INSERT INTO TEST_TIMESTAMPTZ VALUES('1990-2-19'); -- hour、minute、second、fractional second is zero.
556556INSERT INTO TEST_TIMESTAMPTZ VALUES('1990-2-19 11:11:11');
Original file line number Diff line number Diff line change @@ -1739,10 +1739,10 @@ select * from timestpwtz_tb;
17391739drop table timestpwtz_tb;
17401740alter session set NLS_TIMESTAMP_FORMAT='YYYY-MM-DD HH.MI.SS.FF5 AM';
17411741CREATE TABLE timestp_tb(timestp_clo timestamp(7));
1742- WARNING: TIMESTAMP(7) effective number of fractional seconds is 6,the part of excess is 0
1742+ WARNING: TIMESTAMP(7) effective number of fractional seconds is 6, the part of excess is 0
17431743LINE 1: CREATE TABLE timestp_tb(timestp_clo timestamp(7));
17441744 ^
1745- WARNING: TIMESTAMP(7) effective number of fractional seconds is 6,the part of excess is 0
1745+ WARNING: TIMESTAMP(7) effective number of fractional seconds is 6, the part of excess is 0
17461746insert into timestp_tb values ('2022-08-19 03.37.05 PM');
17471747select * from timestp_tb;
17481748 timestp_clo
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ CREATE TABLE TEST_TIMESTAMP(a TIMESTAMP);
143143
144144SET NLS_TIMESTAMP_FORMAT= ' YYYY-MM-DD HH24:MI:SS.FF9' ;
145145
146- -- effective number of fractional seconds is 6,the part of excess is 0
146+ -- effective number of fractional seconds is 6, the part of excess is 0
147147INSERT INTO TEST_TIMESTAMP VALUES (' 1990-1-19 11:11:11.123456789' );
148148
149149INSERT INTO TEST_TIMESTAMP VALUES (' 1990-2-19' ); -- hour、minute、second、fractional second is zero.
@@ -276,7 +276,7 @@ CREATE TABLE TEST_TIMESTAMPTZ(a TIMESTAMP WITH TIME ZONE);
276276SET NLS_TIMESTAMP_TZ_FORMAT= ' YYYY-MM-DD HH24:MI:SS.FF9' ;
277277
278278
279- -- effective number of fractional seconds is 6,the part of excess is 0
279+ -- effective number of fractional seconds is 6, the part of excess is 0
280280INSERT INTO TEST_TIMESTAMPTZ VALUES (' 1990-1-19 11:11:11.123456789' );
281281
282282INSERT INTO TEST_TIMESTAMPTZ VALUES (' 1990-2-19' ); -- hour、minute、second、fractional second is zero.
You can’t perform that action at this time.
0 commit comments