gh-ost/localtests/rename/create.sql

27 lines
798 B
MySQL
Raw Normal View History

2016-08-22 09:50:50 +00:00
drop table if exists gh_ost_test;
create table gh_ost_test (
id int auto_increment,
c1 int not null,
c2 int not null,
primary key (id)
) 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
2016-08-22 14:33:03 +00:00
insert ignore into gh_ost_test values (1, 11, 23);
insert ignore into gh_ost_test values (2, 13, 23);
2016-08-22 09:50:50 +00:00
insert into gh_ost_test values (null, 17, 23);
set @last_insert_id := last_insert_id();
2016-08-22 14:35:21 +00:00
update gh_ost_test set c1=c1+@last_insert_id, c2=c2+@last_insert_id where id=@last_insert_id order by id desc limit 1;
2016-08-22 14:34:00 +00:00
delete from gh_ost_test where id=1;
2016-08-22 14:35:21 +00:00
delete from gh_ost_test where c1=13; -- id=2
2016-08-22 09:50:50 +00:00
end ;;