Although a few posts have already been made about this, I thought I’d post a nice quick article by Peter Gulutzan and Dmitri Lenev on what to do with the upcoming daylight savings time changes and MySQL. This is in case you aren’t using the OS for your time zone info. You can find this out by issuing the following query:
SELECT @@global.time_zone;
If you get back ?SYSTEM?, then the MySQL server is looking to the OS for timezone data, which is the default setting.
DAYLIGHT SAVING TIME CHANGES
By Peter Gulutzan and Dmitri Lenev
This year many American states and Canadian provinces will switch to daylight saving time on March 11 (the second Sunday of March) instead of switching on the first Sunday of April as happened during previous years.
If you populated the mysql.time_zone_transition according to the instructions in the MySQL Reference Manual, “ …
[Read more]