これは、Debian上のRiyadh*のタイムゾーンファイルのバグです。
http://bugs.mysql.com/bug.php?id=20545
推奨される回避策は、警告を単に無視することです(もちろん、これらのタイムゾーンが必要ない場合):
mysql_tzinfo_to_sql /usr/share/lib/zoneinfo | mysql -uroot --force mysql
--force
を使用してTZデータをインポートした後 オプションを選択すると、CONVERT_TZ
を使用できるようになります 。これが私が今やったことの転写です:
sh$ mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -uroot -p mysql --force 2> /dev/null
Enter password: ********
sh$ mysql -p
Enter password: ********
Server version: 5.1.49-3 (Debian)
mysql> select convert_tz(now(), 'UTC', 'CET');
+---------------------------------+
| convert_tz(now(), 'UTC', 'CET') |
+---------------------------------+
| 2013-08-13 21:04:34 |
+---------------------------------+
1 row in set (0.00 sec)