2006-06-12 09:05:24 +02:00
|
|
|
--source include/have_partition.inc
|
2006-05-18 19:16:51 +02:00
|
|
|
--source include/have_innodb.inc
|
|
|
|
|
|
|
|
#
|
|
|
|
# Bug #14673: Wrong InnoDB default row format
|
|
|
|
#
|
|
|
|
create table t1 (a int) engine=innodb partition by hash(a) ;
|
|
|
|
show table status like 't1';
|
|
|
|
drop table t1;
|
|
|
|
|