localtest: rename: testing for DELETE

This commit is contained in:
Shlomi Noach 2016-08-22 16:28:40 +02:00
parent edcb1c446b
commit 1bd93bda70

View File

@ -19,4 +19,5 @@ 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;
delete from gh_ost_test where id <= 2 order by id asc limit 1;
end ;;