mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
mysql-test/r/partition_innodb.result: New BitKeeper file ``mysql-test/r/partition_innodb.result'' mysql-test/t/partition_innodb.test: New BitKeeper file ``mysql-test/t/partition_innodb.test''
10 lines
190 B
Plaintext
10 lines
190 B
Plaintext
--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;
|
|
|