Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
10.0(EOL)
Description
InnoDB and XtraDB crash on the following test case:
a.opt |
--max-allowed-packet=128M
|
--innodb-log-file-size=210M
|
a.test |
source include/have_innodb.inc;
|
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';
|
Note that if the blob gets larger (45000000) or innodb-log-file-size gets smaller (209M) then there is no crash, instead there's an error InnoDB: The total blob data length (44999232) is greater than 10% of the total redo log size (440401920). Please increase total redo log size.