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.result11
1 files changed, 0 insertions, 11 deletions
diff --git a/mysql-test/r/mysql-bug45236.result b/mysql-test/r/mysql-bug45236.result
deleted file mode 100644
index c1e41d62b63..00000000000
--- a/mysql-test/r/mysql-bug45236.result
+++ /dev/null
@@ -1,11 +0,0 @@
-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;