Testing '1970-01-01 00:00:00' error

This commit is contained in:
Shlomi Noach 2018-01-28 08:57:14 +02:00
parent ce4e42da32
commit 858cd187d2

View File

@ -0,0 +1,23 @@
drop table if exists gh_ost_test;
create table gh_ost_test (
id int auto_increment,
create_time timestamp NULL,
update_time timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
counter int(10) unsigned DEFAULT NULL,
primary key(id)
) auto_increment=1;
insert into gh_ost_test values (1,'0000-00-00 00:00:00',now(),0);
drop event if exists gh_ost_test;
delimiter ;;
create event gh_ost_test
on schedule every 1 second
starts current_timestamp
ends current_timestamp + interval 60 second
on completion not preserve
enable
do
begin
update gh_ost_test set counter = counter + 1 where id = 1;
end ;;