gh-ost/localtests/swap-uk-uk/create.sql

25 lines
723 B
MySQL
Raw Normal View History

drop table if exists gh_ost_test;
create table gh_ost_test (
2020-02-05 08:12:29 +00:00
id bigint not null,
i int not null,
2020-02-05 08:12:29 +00:00
ts timestamp(6) not null,
unique key id_uidx(id),
unique key its_uidx(i, ts)
) ;
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 ((unix_timestamp() << 2) + 0, 11, now(6));
insert into gh_ost_test values ((unix_timestamp() << 2) + 1, 13, now(6));
insert into gh_ost_test values ((unix_timestamp() << 2) + 2, 17, now(6));
insert into gh_ost_test values ((unix_timestamp() << 2) + 3, 19, now(6));
end ;;