2016-10-13 11:13:51 +00:00
|
|
|
drop table if exists gh_ost_test;
|
|
|
|
create table gh_ost_test (
|
|
|
|
id int auto_increment,
|
|
|
|
i int not null,
|
|
|
|
ts0 timestamp default current_timestamp,
|
2017-07-26 09:29:32 +00:00
|
|
|
ts1 timestamp default current_timestamp,
|
|
|
|
ts2 timestamp default current_timestamp,
|
2016-10-13 11:13:51 +00:00
|
|
|
updated tinyint unsigned default 0,
|
|
|
|
primary key(id),
|
|
|
|
key i_idx(i)
|
|
|
|
) auto_increment=1;
|
|
|
|
|
|
|
|
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
|
|
|
|
insert into gh_ost_test values (null, 11, null, now(), now(), 0);
|
|
|
|
update gh_ost_test set ts2=now() + interval 1 minute, updated = 1 where i = 11 order by id desc limit 1;
|
|
|
|
|
|
|
|
insert into gh_ost_test values (null, 13, null, now(), now(), 0);
|
|
|
|
update gh_ost_test set ts2=now() + interval 1 minute, updated = 1 where i = 13 order by id desc limit 1;
|
|
|
|
|
|
|
|
insert into gh_ost_test values (null, 17, null, now(), now(), 0);
|
|
|
|
update gh_ost_test set ts2=now() + interval 1 minute, updated = 1 where i = 17 order by id desc limit 1;
|
|
|
|
|
|
|
|
insert into gh_ost_test values (null, 19, null, now(), now(), 0);
|
|
|
|
update gh_ost_test set ts2=now() + interval 1 minute, updated = 1 where i = 19 order by id desc limit 1;
|
|
|
|
|
|
|
|
insert into gh_ost_test values (null, 23, null, now(), now(), 0);
|
|
|
|
update gh_ost_test set ts2=now() + interval 1 minute, updated = 1 where i = 23 order by id desc limit 1;
|
|
|
|
end ;;
|