summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/innodb-bigblob.test
blob: 7665c890316d4b2ef2b7ce5fe8f2f117de11b2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- source include/have_innodb.inc
-- source include/big_test.inc
-- source include/not_embedded.inc

--disable_query_log
let $status_orig=`SELECT @@innodb_status_output`;
--enable_query_log

call mtr.add_suppression("Resizing redo log from *");
call mtr.add_suppression("Starting to delete and rewrite log files.");
call mtr.add_suppression("New log files created, LSN=*");

create table foo (id varchar(37) not null, content longblob) engine=INNODB;
insert into foo (id, content) values('xyz', '');
update foo set content=repeat('a', 43941888) where id='xyz';
drop table foo;

--disable_query_log
EVAL SET GLOBAL innodb_status_output = $status_orig;
--enable_query_log