mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
8d4d3e1301
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.
10 lines
345 B
Text
10 lines
345 B
Text
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;
|