From 3f619478f796eddbba6e39502fe941b285dd97b1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:00:34 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- mysql-test/main/huge_frm-6224.test | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 mysql-test/main/huge_frm-6224.test (limited to 'mysql-test/main/huge_frm-6224.test') diff --git a/mysql-test/main/huge_frm-6224.test b/mysql-test/main/huge_frm-6224.test new file mode 100644 index 00000000..e53c0a4c --- /dev/null +++ b/mysql-test/main/huge_frm-6224.test @@ -0,0 +1,27 @@ +# +# 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 +set @save_max_allowed_packet=@@max_allowed_packet; +set global max_allowed_packet=1024*1024*10; +connect con1,localhost,root; + +let $n=8164; +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 COMMENT 'partition p01234567890123456789012345678901234567890123456789012345678$n',; + dec $n; +} + +--disable_query_log +--error ER_TABLE_DEFINITION_TOO_BIG +eval $a partition foo); +--enable_query_log + +connection default; +disconnect con1; +set global max_allowed_packet=@save_max_allowed_packet; -- cgit v1.2.3