#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:
Rich Prohaska 2012-03-14 17:35:44 +00:00
parent 15d078c51b
commit e072fc19e0
4 changed files with 8 additions and 0 deletions

View file

@ -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,,);

View file

@ -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,,);

View file

@ -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,,);

View file

@ -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,,);