| Bug #66154 | CONVERT_TZ using Etc/GMT zones gives wrong result | ||
|---|---|---|---|
| Submitted: | 2 Aug 2012 9:21 | Modified: | 2 Aug 2012 9:33 |
| Reporter: | Peter Reinhold | Email Updates: | |
| Status: | Verified | Impact on me: | |
| Category: | MySQL Server: DML | Severity: | S3 (Non-critical) |
| Version: | 5.0, 5.5, 5.5.28 | OS: | Any |
| Assigned to: | CPU Architecture: | Any | |
| Tags: | convert_tz timezone conversion | ||
[2 Aug 2012 9:21]
Peter Reinhold
[2 Aug 2012 9:33]
Valeriy Kravchuk
Verified with recent mysql-5.5 on Linux FC14:
[openxs@chief 5.5]$ bin/mysql -uroot test
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.5.28-debug Source distribution
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> SELECT CONVERT_TZ('2012-01-01 00:00:00', 'Etc/GMT+0', 'Etc/GMT+1')
-> ;
+-------------------------------------------------------------+
| CONVERT_TZ('2012-01-01 00:00:00', 'Etc/GMT+0', 'Etc/GMT+1') |
+-------------------------------------------------------------+
| 2011-12-31 23:00:00 |
+-------------------------------------------------------------+
1 row in set (0.01 sec)
mysql> SELECT CONVERT_TZ('2012-01-01 00:00:00', 'Europe/London', 'Europe/Copenhagen')
-> ;
+-------------------------------------------------------------------------+
| CONVERT_TZ('2012-01-01 00:00:00', 'Europe/London', 'Europe/Copenhagen') |
+-------------------------------------------------------------------------+
| 2012-01-01 01:00:00 |
+-------------------------------------------------------------------------+
1 row in set (0.00 sec)
