Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 10.1, 10.0
-
Component/s: Storage Engine - InnoDB, Storage Engine - XtraDB, Tests
Description
http://buildbot.askmonty.org/buildbot/builders/win32-debug2/builds/6563/steps/test/logs/stdio
innodb.innodb-alter-table-disk-full 'innodb_plugin' [ fail ]
Test ended at 2014-11-22 12:13:47
CURRENT_TEST: innodb.innodb-alter-table-disk-full
mysqltest: At line 30: query 'alter table t1 add testcol int' succeeded - should have failed with errno 1114...
The result from queries just before the failure was:
create table t1(a int not null primary key, b int) engine=innodb;
create procedure innodb_insert_proc (repeat_count int)
begin
declare current_num int;
set current_num = 0;
while current_num < repeat_count do
insert into t1 values(current_num, current_num);
set current_num = current_num + 1;
end while;
end//
commit;
set autocommit=0;
call innodb_insert_proc(10000);
commit;
set autocommit=1;
set DEBUG_DBUG='+d,ib_os_aio_func_io_failure_28';
alter table t1 add testcol int;
http://buildbot.askmonty.org/buildbot/builders/win32-debug2/builds/6566/steps/test/logs/stdio
Gliffy Diagrams
Attachments
Issue Links
- blocks
-
MDEV-7172 Fix buildbot failures in 10.1 tree
-
- Closed
-
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
commit 1ac12df0cb064ad7f2ad87804c1d2d80c9cfa6c5
Author: Jan Lindström <jan.lindstrom@skysql.com>
Date: Mon Nov 24 15:20:23 2014 +0200
MDEV-7164: innodb.innodb-alter-table-disk-full fails in buildbot on WindowsAnalysis: Test case uses Linux specific error codes.
Fix: Can't run test case with Windows currently because requires
to inject error to system.