summaryrefslogtreecommitdiff
path: root/mysql-test/main/huge_frm-6224.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/huge_frm-6224.result')
-rw-r--r--mysql-test/main/huge_frm-6224.result3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/main/huge_frm-6224.result b/mysql-test/main/huge_frm-6224.result
index bbb650bc5b4..4c97bf3837c 100644
--- a/mysql-test/main/huge_frm-6224.result
+++ b/mysql-test/main/huge_frm-6224.result
@@ -1,6 +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=default;
+set global max_allowed_packet=@save_max_allowed_packet;