Commit 83dd7db6 authored by Daniel Black's avatar Daniel Black

MDEV-27314 InnoDB Buffer Pool Resize output cleanup (mtr postfix)

More tests depending on 'Completed resizing buffer pool.' output
parent d0ca235d
......@@ -7,7 +7,7 @@
let $wait_timeout = 180;
let $wait_condition =
SELECT SUBSTR(variable_value, 1, 34) = 'Completed resizing buffer pool at '
SELECT SUBSTR(variable_value, 1, 31) = 'Completed resizing buffer pool.'
FROM information_schema.global_status
WHERE LOWER(variable_name) = 'innodb_buffer_pool_resize_status';
......
......@@ -8,7 +8,7 @@
let $wait_timeout = 180;
let $wait_condition =
SELECT SUBSTR(variable_value, 1, 34) = 'Completed resizing buffer pool at '
SELECT SUBSTR(variable_value, 1, 31) = 'Completed resizing buffer pool.'
FROM information_schema.global_status
WHERE LOWER(variable_name) = 'innodb_buffer_pool_resize_status';
......
......@@ -25,7 +25,7 @@
--source include/have_innodb.inc
let $wait_condition =
SELECT SUBSTR(variable_value, 1, 34) = 'Completed resizing buffer pool at '
SELECT SUBSTR(variable_value, 1, 31) = 'Completed resizing buffer pool.'
FROM information_schema.global_status
WHERE LOWER(variable_name) = 'innodb_buffer_pool_resize_status';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment