Skip to content

Commit 99fbd9a

Browse files
committed
fixup! 9967583
1 parent aca2f9d commit 99fbd9a

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

mysql-test/suite/innodb/r/log_file_size_online.result

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,10 @@ SET GLOBAL innodb_log_file_buffering=@save;
2727
SET GLOBAL innodb_log_file_mmap=OFF;
2828
Got one of the listed errors
2929
connect con1,localhost,root;
30-
SET GLOBAL innodb_log_file_size=16777216;
30+
SET GLOBAL innodb_log_file_size=7340032;
3131
connection default;
3232
SET GLOBAL innodb_log_archive=ON;
33-
ERROR HY000: SET GLOBAL innodb_log_file_size is in progress
34-
SELECT @@GLOBAL.innodb_log_archive;
35-
@@GLOBAL.innodb_log_archive
36-
0
33+
SET GLOBAL innodb_log_archive=OFF;
3734
KILL QUERY @id;
3835
connection con1;
3936
SET GLOBAL innodb_log_archive=ON, innodb_log_file_size=10485760;

mysql-test/suite/innodb/t/log_file_size_online.test

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@ SET GLOBAL innodb_log_file_mmap=OFF;
4545

4646
--connect con1,localhost,root
4747
let $ID= `SELECT @id := CONNECTION_ID()`;
48-
send SET GLOBAL innodb_log_file_size=16777216;
48+
send SET GLOBAL innodb_log_file_size=7340032;
4949
--connection default
5050
let $ignore= `SELECT @id := $ID`;
5151
let $wait_condition=
5252
select count(*)=1 from information_schema.processlist
53-
where id=@id and info like 'SET GLOBAL innodb_log_file_size=16777216';
53+
where id=@id and info like 'SET GLOBAL innodb_log_file_size=7340032';
5454
--source include/wait_condition.inc
55-
--error ER_WRONG_USAGE
55+
--error 0,ER_WRONG_USAGE
5656
SET GLOBAL innodb_log_archive=ON;
57-
SELECT @@GLOBAL.innodb_log_archive;
57+
SET GLOBAL innodb_log_archive=OFF;
5858

5959
KILL QUERY @id;
6060
--connection con1

0 commit comments

Comments
 (0)