mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
BUG#19309: Crash if double procedural alter
This commit is contained in:

parent
2746b73968
commit
9a34f6199b
@ -1,5 +1,13 @@
|
||||
drop table if exists t1;
|
||||
create table t1 (a int)
|
||||
partition by list (a)
|
||||
(partition p0 values in (1));
|
||||
create procedure pz()
|
||||
alter table t1 engine = myisam;
|
||||
call pz();
|
||||
call pz();
|
||||
drop table t1;
|
||||
create table t1 (a int)
|
||||
engine = csv
|
||||
partition by list (a)
|
||||
(partition p0 values in (null));
|
||||
|
Reference in New Issue
Block a user