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 | 8d4d3e1301ed8910a21c70cdb7b9e2f468bb7af6 (patch) | |
tree | df804904d2700c325ef7b21412ebdafcd0c529af /mysql-test/r/mysql-bug41486.result | |
parent | afcfe81fea26b9f746ee7043c41d8dff52333067 (diff) | |
download | mariadb-git-8d4d3e1301ed8910a21c70cdb7b9e2f468bb7af6.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.
mysql-test/include/wait_until_disconnected.inc:
Used in mysql-bug41486.test.
mysql-test/r/mysql-bug41486.result:
Moved the resource-intensive test case for bug #41486 into
a separate test file to reduce execution time for mysql.test.
mysql-test/r/mysql.result:
Moved the resource-intensive test case for bug #41486 into
a separate test file to reduce execution time for mysql.test.
mysql-test/t/mysql-bug41486.test:
Moved the resource-intensive test case for bug #41486 into
a separate test file to reduce execution time for mysql.test.
mysql-test/t/mysql.test:
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; |