added rename & reorder test
This commit is contained in:
parent
53ef6eae5a
commit
2bf882de16
27
localtests/rename-reorder-columns/create.sql
Normal file
27
localtests/rename-reorder-columns/create.sql
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
drop table if exists gh_ost_test;
|
||||||
|
create table gh_ost_test (
|
||||||
|
id int auto_increment,
|
||||||
|
c1 int not null,
|
||||||
|
c2 int not null,
|
||||||
|
c3 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 ignore into gh_ost_test values (1, 11, 23, 97);
|
||||||
|
insert ignore into gh_ost_test values (2, 13, 27, 61);
|
||||||
|
insert into gh_ost_test values (null, 17, 31, 53);
|
||||||
|
set @last_insert_id := last_insert_id();
|
||||||
|
update gh_ost_test set c1=c1+@last_insert_id, c2=c2+@last_insert_id, c3=c3+@last_insert_id where id=@last_insert_id order by id desc limit 1;
|
||||||
|
delete from gh_ost_test where id=1;
|
||||||
|
delete from gh_ost_test where c1=13; -- id=2
|
||||||
|
end ;;
|
1
localtests/rename-reorder-columns/extra_args
Normal file
1
localtests/rename-reorder-columns/extra_args
Normal file
@ -0,0 +1 @@
|
|||||||
|
--alter="change column c2 c2a int not null, change column c3 c3 int not null after id" --approve-renamed-columns
|
1
localtests/rename-reorder-columns/ghost_columns
Normal file
1
localtests/rename-reorder-columns/ghost_columns
Normal file
@ -0,0 +1 @@
|
|||||||
|
id, c1, c2a, c3
|
1
localtests/rename-reorder-columns/orig_columns
Normal file
1
localtests/rename-reorder-columns/orig_columns
Normal file
@ -0,0 +1 @@
|
|||||||
|
id, c1, c2, c3
|
Loading…
Reference in New Issue
Block a user