mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix more failures in buildbot.
Server shutdown timeout of 10 seconds in test cases is too little for heavily loaded test servers. Fix innodb_bug12902967 to not fail with wrong error log output if we have warnings about too few AIO handles for InnoDB. Fix typo which could lead to unnecessarily replacing GTID event with dummy event.
This commit is contained in:
@ -24,7 +24,7 @@ alter table t1 add constraint c1 foreign key (f1) references t1(f1);
|
||||
perl;
|
||||
$file = $ENV{error_log};
|
||||
open (FILE, '<', $file) or die "can't open(< $file): $!\n";
|
||||
print ((grep { /^InnoDB:/ and not /aio/i } <FILE>)[-2..-1]);
|
||||
print ((grep { /^InnoDB:/ and not /aio/i and not /io_setup\(\) attempt [0-9]+ failed/ } <FILE>)[-2..-1]);
|
||||
EOF
|
||||
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user