summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/rows-32m-0.result
diff options
context:
space:
mode:
Diffstat (limited to 'storage/tokudb/mysql-test/tokudb/r/rows-32m-0.result')
-rw-r--r--storage/tokudb/mysql-test/tokudb/r/rows-32m-0.result3
1 files changed, 3 insertions, 0 deletions
diff --git a/storage/tokudb/mysql-test/tokudb/r/rows-32m-0.result b/storage/tokudb/mysql-test/tokudb/r/rows-32m-0.result
index db72519f024..bcbd908ef6c 100644
--- a/storage/tokudb/mysql-test/tokudb/r/rows-32m-0.result
+++ b/storage/tokudb/mysql-test/tokudb/r/rows-32m-0.result
@@ -5,6 +5,7 @@ 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;
set global max_allowed_packet=100000000;
+connect conn1,localhost,root,,;
insert into t values (1,repeat('a',32*1024*1024));
ERROR HY000: Got error 22 "Invalid argument" from storage engine TokuDB
insert into t values (1,repeat('a',32*1024*1024-1));
@@ -32,5 +33,7 @@ id length(v)
2 1
3 1
4 1
+connection default;
+disconnect conn1;
set global max_allowed_packet=@my_max_allowed_packet;
drop table t;