mariadb/mysql-test/t/huge_frm-6224.test
Sergei Golubchik ca2ba2291a MDEV-6224 Incorrect information in file when *.frm is > 256K
Reject huge frms at CREATE TABLE, not when it - successfully written - is being opened.
Also raise the frm size limit from 256K to 512K
2014-07-08 19:38:26 +02:00

20 lines
473 B
Text

#
# MDEV-6224 Incorrect information in file when *.frm is > 256K
#
# verify that huge frms are rejected during creation, not on opening
#
--source include/have_partition.inc
let $n=5646;
let $a=create table t1 (a int) engine=myisam partition by hash(a) partitions $n (;
dec $n;
while ($n)
{
let $a=$a partition p01234567890123456789012345678901234567890123456789012345678$n,;
dec $n;
}
--disable_query_log
--error ER_TABLE_DEFINITION_TOO_BIG
eval $a partition foo);