blob: 84c74855fbb0ac56f005eb176bef1c4907f61c61 (
plain)
1
2
3
4
5
6
7
8
9
|
--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;
|