mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge dator5.(none):/home/pappa/clean-mysql-5.1
into dator5.(none):/home/pappa/bug17138
This commit is contained in:
@ -1057,4 +1057,21 @@ alter table t1 add partition (partition p2 values in (3));
|
||||
alter table t1 drop partition p2;
|
||||
use test;
|
||||
drop database db99;
|
||||
drop procedure if exists mysqltest_1;
|
||||
create table t1 (a int)
|
||||
partition by list (a)
|
||||
(partition p0 values in (0));
|
||||
insert into t1 values (0);
|
||||
create procedure mysqltest_1 ()
|
||||
begin
|
||||
begin
|
||||
declare continue handler for sqlexception begin end;
|
||||
update ignore t1 set a = 1 where a = 0;
|
||||
end;
|
||||
prepare stmt1 from 'alter table t1';
|
||||
execute stmt1;
|
||||
end//
|
||||
call mysqltest_1()//
|
||||
drop table t1;
|
||||
drop procedure mysqltest_1;
|
||||
End of 5.1 tests
|
||||
|
Reference in New Issue
Block a user