diff --git a/localtests/rename/create.sql b/localtests/rename/create.sql new file mode 100644 index 0000000..f1e458f --- /dev/null +++ b/localtests/rename/create.sql @@ -0,0 +1,22 @@ +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 + insert into gh_ost_test values (null, 17, 23); + set @last_insert_id := last_insert_id(); + 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; +end ;; diff --git a/localtests/rename/extra_args b/localtests/rename/extra_args new file mode 100644 index 0000000..55af79a --- /dev/null +++ b/localtests/rename/extra_args @@ -0,0 +1 @@ +--approve-renamed-columns --alter="change column c3 c4 int not null"