After I create the event...
DELIMITER $$
CREATE DEFINER=`abc`@`localhost` EVENT `testEventYearly` ON SCHEDULE EVERY 1 YEAR STARTS '2018-01-01 00:00:00' ON COMPLETION PRESERVE ENABLE DO BEGIN
CALL `spTestEventYearly` ();
END$$
...I look in the mysql.event
table and see a starts
value of 2018-01-01 06:00:00
. I've checked the date/time on the server and all is well. Why is there a difference in time? And will it execute at 06:00
or 00:00
?