01921_datatype_date32: Adapt it to work under Pacific/Fiji

This commit is contained in:
Raúl Marín 2021-07-28 18:15:47 +02:00
parent ea0514a955
commit 46b162c595
2 changed files with 6 additions and 6 deletions

View File

@ -194,11 +194,11 @@
2283-11-11 01:00:00.000 2283-11-11 01:00:00.000
2021-06-22 01:00:00.000 2021-06-22 01:00:00.000
-------addHours--------- -------addHours---------
1925-01-01 12:00:00.000 1925-01-01 01:00:00.000
1925-01-01 12:00:00.000 1925-01-01 01:00:00.000
2282-12-31 12:00:00.000 2282-12-31 01:00:00.000
2283-11-11 12:00:00.000 2283-11-11 01:00:00.000
2021-06-22 12:00:00.000 2021-06-22 01:00:00.000
-------addDays--------- -------addDays---------
1925-01-08 1925-01-08
1925-01-08 1925-01-08

View File

@ -85,7 +85,7 @@ select addSeconds(x1, 3600) from t1;
select '-------addMinutes---------'; select '-------addMinutes---------';
select addMinutes(x1, 60) from t1; select addMinutes(x1, 60) from t1;
select '-------addHours---------'; select '-------addHours---------';
select addHours(x1, 12) from t1; select addHours(x1, 1) from t1;
select '-------addDays---------'; select '-------addDays---------';
select addDays(x1, 7) from t1; select addDays(x1, 7) from t1;
select '-------addWeeks---------'; select '-------addWeeks---------';