diff options
author | Alexey Kopytov <Alexey.Kopytov@sun.com> | 2009-03-24 23:44:38 +0300 |
---|---|---|
committer | Alexey Kopytov <Alexey.Kopytov@sun.com> | 2009-03-24 23:44:38 +0300 |
commit | b071b660e9a1c16173e1fec1e00f0f201ec35018 (patch) | |
tree | df804904d2700c325ef7b21412ebdafcd0c529af /mysql-test/r/mysql-bug41486.result | |
parent | a82402dd6fd603168d5c23c3d0d424b64fdfee9d (diff) | |
download | mariadb-git-b071b660e9a1c16173e1fec1e00f0f201ec35018.tar.gz |
Fix for bug #43801: mysql.test takes too long, fails due to
expired timeout on debx86-b in PB
Moved the resource-intensive test case for bug #41486 into
a separate test file to reduce execution time for mysql.test.
Diffstat (limited to 'mysql-test/r/mysql-bug41486.result')
-rw-r--r-- | mysql-test/r/mysql-bug41486.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/mysql-bug41486.result b/mysql-test/r/mysql-bug41486.result new file mode 100644 index 00000000000..454b5888b49 --- /dev/null +++ b/mysql-test/r/mysql-bug41486.result @@ -0,0 +1,10 @@ +DROP TABLE IF EXISTS t1; +SET @old_max_allowed_packet= @@global.max_allowed_packet; +SET @@global.max_allowed_packet = 2 * 1024 * 1024 + 1024; +CREATE TABLE t1(data LONGBLOB); +INSERT INTO t1 SELECT REPEAT('1', 2*1024*1024); +SELECT LENGTH(data) FROM t1; +LENGTH(data) +2097152 +DROP TABLE t1; +SET @@global.max_allowed_packet = @old_max_allowed_packet; |