From 7ec88c70bf2b3b3790f47fa8c1e8d8f51ce5e074 Mon Sep 17 00:00:00 2001 From: Rich Prohaska Date: Wed, 14 Mar 2012 17:35:44 +0000 Subject: [PATCH] #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 --- mysql-test/suite/tokudb.rows/t/32m-0.test | 2 ++ mysql-test/suite/tokudb.rows/t/32m-1.test | 2 ++ mysql-test/suite/tokudb.rows/t/32m-rand-insert.test | 2 ++ mysql-test/suite/tokudb.rows/t/32m-seq-insert.test | 2 ++ 4 files changed, 8 insertions(+) diff --git a/mysql-test/suite/tokudb.rows/t/32m-0.test b/mysql-test/suite/tokudb.rows/t/32m-0.test index a6c8ec10d94..4dbf66e8e31 100644 --- a/mysql-test/suite/tokudb.rows/t/32m-0.test +++ b/mysql-test/suite/tokudb.rows/t/32m-0.test @@ -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,,); diff --git a/mysql-test/suite/tokudb.rows/t/32m-1.test b/mysql-test/suite/tokudb.rows/t/32m-1.test index 85d335e2d37..be2d0d9b10c 100644 --- a/mysql-test/suite/tokudb.rows/t/32m-1.test +++ b/mysql-test/suite/tokudb.rows/t/32m-1.test @@ -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,,); diff --git a/mysql-test/suite/tokudb.rows/t/32m-rand-insert.test b/mysql-test/suite/tokudb.rows/t/32m-rand-insert.test index 212c36902f7..7422df6113c 100644 --- a/mysql-test/suite/tokudb.rows/t/32m-rand-insert.test +++ b/mysql-test/suite/tokudb.rows/t/32m-rand-insert.test @@ -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,,); diff --git a/mysql-test/suite/tokudb.rows/t/32m-seq-insert.test b/mysql-test/suite/tokudb.rows/t/32m-seq-insert.test index ec40ab1cddd..65d46162f7a 100644 --- a/mysql-test/suite/tokudb.rows/t/32m-seq-insert.test +++ b/mysql-test/suite/tokudb.rows/t/32m-seq-insert.test @@ -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,,);