mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
11 lines
345 B
Text
11 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;
|