diff options
Diffstat (limited to 'mysql-test/main/huge_frm-6224.result')
-rw-r--r-- | mysql-test/main/huge_frm-6224.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/main/huge_frm-6224.result b/mysql-test/main/huge_frm-6224.result new file mode 100644 index 00000000..4c97bf38 --- /dev/null +++ b/mysql-test/main/huge_frm-6224.result @@ -0,0 +1,7 @@ +set @save_max_allowed_packet=@@max_allowed_packet; +set global max_allowed_packet=1024*1024*10; +connect con1,localhost,root; +ERROR HY000: The definition for table `t1` is too big +connection default; +disconnect con1; +set global max_allowed_packet=@save_max_allowed_packet; |