mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
MDEV-27314 InnoDB Buffer Pool Resize output cleanup (mtr postfix)
More tests depending on 'Completed resizing buffer pool.' output
This commit is contained in:
parent
d0ca235d16
commit
83dd7db69d
3 changed files with 3 additions and 3 deletions
|
@ -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';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue