gh-ost/localtests/latin1/create.sql

26 lines
868 B
MySQL
Raw Permalink Normal View History

2016-09-06 07:38:41 +00:00
drop table if exists gh_ost_test;
create table gh_ost_test (
id int auto_increment,
2016-10-26 18:03:09 +00:00
t varchar(128) charset latin1 collate latin1_swedish_ci,
2016-09-06 07:38:41 +00:00
primary key(id)
) auto_increment=1 charset latin1 collate latin1_swedish_ci;
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, md5(rand()));
insert into gh_ost_test values (null, 'átesting');
2016-10-26 18:03:09 +00:00
insert into gh_ost_test values (null, 'ádelete');
insert into gh_ost_test values (null, 'testátest');
2016-10-26 18:03:09 +00:00
update gh_ost_test set t='áupdated' order by id desc limit 1;
update gh_ost_test set t='áupdated1' where t='áupdated' order by id desc limit 1;
delete from gh_ost_test where t='ádelete';
2016-09-06 07:38:41 +00:00
end ;;