Commit 7ec88c70 authored by Rich Prohaska's avatar Rich Prohaska

#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
parent 37d7d76c
......@@ -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,,);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment