1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Merge dator5.(none):/home/pappa/bug21173

into  dator5.(none):/home/pappa/bug21388
This commit is contained in:
mikael/pappa@dator5.(none)
2006-08-16 10:47:13 -04:00
3 changed files with 61 additions and 4 deletions

View File

@@ -28,6 +28,28 @@ partitions 1.5;
create table t1 (a int)
partition by key(a)
partitions 1e+300;
#
# Bug 21173: SHOW TABLE STATUS crashes server in InnoDB
#
create table t1 (a int)
engine = innodb
partition by key (a);
show table status;
insert into t1 values (0), (1), (2), (3);
show table status;
drop table t1;
create table t1 (a int auto_increment primary key)
engine = innodb
partition by key (a);
show table status;
insert into t1 values (NULL), (NULL), (NULL), (NULL);
show table status;
insert into t1 values (NULL), (NULL), (NULL), (NULL);
show table status;
drop table t1;
>>>>>>>
#
# Bug 19309 Partitions: Crash if double procedural alter
#