summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysql-bug45236.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/mysql-bug45236.result')
-rw-r--r--mysql-test/r/mysql-bug45236.result3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/mysql-bug45236.result b/mysql-test/r/mysql-bug45236.result
index cefcb1d314c..c1e41d62b63 100644
--- a/mysql-test/r/mysql-bug45236.result
+++ b/mysql-test/r/mysql-bug45236.result
@@ -1,8 +1,11 @@
DROP TABLE IF EXISTS t1;
SET @old_max_allowed_packet= @@global.max_allowed_packet;
SET @@global.max_allowed_packet = 1024 * 1024 + 1024;
+connect con1, localhost, root,,;
CREATE TABLE t1(data LONGBLOB);
INSERT INTO t1 SELECT CONCAT(REPEAT('1', 1024*1024 - 27),
"\'\r dummydb dummyhost");
DROP TABLE t1;
+disconnect con1;
+connection default;
SET @@global.max_allowed_packet = @old_max_allowed_packet;