diff options
Diffstat (limited to 'mysql-test/main/mysql-bug45236.result')
-rw-r--r-- | mysql-test/main/mysql-bug45236.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/main/mysql-bug45236.result b/mysql-test/main/mysql-bug45236.result new file mode 100644 index 00000000000..c1e41d62b63 --- /dev/null +++ b/mysql-test/main/mysql-bug45236.result @@ -0,0 +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; |