mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
#4521 disable max packet warnings in 5.5 refs[t:4521]
git-svn-id: file:///svn/mysql/tests/mysql-test@40865 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
15d078c51b
commit
e072fc19e0
4 changed files with 8 additions and 0 deletions
|
@ -12,7 +12,9 @@ drop table if exists t;
|
|||
create table t (id int not null primary key, v longblob not null);
|
||||
|
||||
select @@max_allowed_packet into @my_max_allowed_packet;
|
||||
--disable_warnings
|
||||
set global max_allowed_packet=100000000;
|
||||
--enable_warnings
|
||||
|
||||
connect(conn1,localhost,root,,);
|
||||
|
||||
|
|
|
@ -12,7 +12,9 @@ drop table if exists t;
|
|||
create table t (id int not null primary key, v0 longblob not null,v1 longblob not null);
|
||||
|
||||
select @@max_allowed_packet into @my_max_allowed_packet;
|
||||
--disable_warnings
|
||||
set global max_allowed_packet=100000000;
|
||||
--enable_warnings
|
||||
|
||||
connect(conn1,localhost,root,,);
|
||||
|
||||
|
|
|
@ -9,7 +9,9 @@ drop table if exists t;
|
|||
create table t (id int not null primary key, v longblob not null);
|
||||
|
||||
select @@max_allowed_packet into @my_max_allowed_packet;
|
||||
--disable_warnings
|
||||
set global max_allowed_packet=100000000;
|
||||
--enable_warnings
|
||||
|
||||
connect(conn1,localhost,root,,);
|
||||
|
||||
|
|
|
@ -9,7 +9,9 @@ drop table if exists t;
|
|||
create table t (id int not null auto_increment primary key, v longblob not null);
|
||||
|
||||
select @@max_allowed_packet into @my_max_allowed_packet;
|
||||
--disable_warnings
|
||||
set global max_allowed_packet=100000000;
|
||||
--enable_warnings
|
||||
|
||||
connect(conn1,localhost,root,,);
|
||||
|
||||
|
|
Loading…
Reference in a new issue