summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/innodb-bigblob.result
blob: 20fe0ce5c43d23938c69939643307e35e5763b2e (plain)
1
2
3
4
5
6
7
8
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=*");
call mtr.add_suppression("Writer thread is waiting this semaphore");
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;