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