1
0
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:
mikael@c-0409e253.1238-1-64736c10.cust.bredbandsbolaget.se
2006-06-15 14:03:17 -04:00
parent 2746b73968
commit 9a34f6199b
3 changed files with 59 additions and 2 deletions

View File

@ -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));