4

我有一个convert_tz在mysql中返回null的问题。

mysql --version
mysql  Ver 14.14 Distrib 5.6.11, for osx10.7 (x86_64) using  EditLine wrapper 

我阅读了手册http://dev.mysql.com/doc/refman/5.5/en/time-zone-support.html 我运行了这个命令:bash-3.2# mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql 输入密码:警告:无法加载“/usr/share/zoneinfo/+VERSION”作为时区。跳过它。

Warning: Unable to load '/usr/share/zoneinfo/Asia/Riyadh87' as time zone. Skipping it.
Warning: Unable to load '/usr/share/zoneinfo/Asia/Riyadh88' as time zone. Skipping it.
Warning: Unable to load '/usr/share/zoneinfo/Asia/Riyadh89' as time zone. Skipping it.
Warning: Unable to load '/usr/share/zoneinfo/Mideast/Riyadh87' as time zone. Skipping it.
Warning: Unable to load '/usr/share/zoneinfo/Mideast/Riyadh88' as time zone. Skipping it.
Warning: Unable to load '/usr/share/zoneinfo/Mideast/Riyadh89' as time zone. Skipping it.
ERROR 1406 (22001) at line 38916: Data too long for column 'Abbreviation' at row 1

然后,使用 mysql 我运行了这个命令。SELECT CONVERT_TZ('2004-01-01 12:00:00','GMT','EST'); 返回null。我可以确认 mysql.time_zone_transition_type 表有 GMT 和 EST 条目。

4

2 回答 2

17

解决此问题的另一种方法是将 mysql_tzinfo 导出到文本文件进行编辑:

$ mysql_tzinfo_to_sql /usr/share/zoneinfo > tzinfo.sql

找到有问题的行,在我的例子中是第 38982 行,它是从第 38982 行到第 38984 行的拆分查询:

INSERT INTO time_zone_transition_type (Time_zone_id, Transition_type_id, Offset, Is_DST,    Abbreviation) VALUES (@time_zone_id, 0, 0, 0, 'Local time zone must be set--see zic manual page');

将其更改为:

INSERT INTO time_zone_transition_type (Time_zone_id, Transition_type_id, Offset, Is_DST, Abbreviation) VALUES (@time_zone_id, 0, 0, 0, 'UNSET');

保存文件并将其插入到您的 mysql 数据库中:

$ cat tzinfo.sql | mysql -u root mysql

来源:http
: //dev.mysql.com/doc/refman/4.1/en/time-zone-support.html 使用 MacOS 10.9.3、MySQL 5.6.15 测试

于 2014-05-31T14:41:19.377 回答
0

**更新,我通过使用linux机器创建sql文件修复了这个问题:mysql_tzinfo_to_sql /usr/share/zoneinfo,然后将此文件导入我的mac mysql。

于 2013-07-29T00:00:28.627 回答