diff options
Diffstat (limited to '')
-rw-r--r-- | mysql-test/main/timezone.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/main/timezone.result b/mysql-test/main/timezone.result index 2ba1e3fb..2a099e90 100644 --- a/mysql-test/main/timezone.result +++ b/mysql-test/main/timezone.result @@ -75,3 +75,14 @@ alter table mysql.time_zone_transition_type add primary key (time_zone_id,transi # # End of 10.8 tests # +# +# MDEV-31684 Add timezone information to DATE_FORMAT +# +# using system time +SET @@time_zone= default; +SELECT DATE_FORMAT('2009-11-01 22:23:00', '%z %Z') AS current_timezone; +current_timezone ++0100 MET +SELECT DATE_FORMAT('2008-06-04 02:23:00', '%z %Z') AS current_timezone; +current_timezone ++0200 MEST |