diff options
author | Haidong Ji <ji@haidongji.com> | 2022-01-22 17:13:14 -0600 |
---|---|---|
committer | Daniel Black <daniel@mariadb.org> | 2022-01-24 11:14:26 +1100 |
commit | d0ca235d167b7ea462e11efead09527498c2a18a (patch) | |
tree | 1f9e8945aad9453650c840ad3a4947d52da7dfda /mysql-test | |
parent | c5c61b51b66df66dbd49a88111ed7f57705dcc78 (diff) | |
download | mariadb-git-d0ca235d167b7ea462e11efead09527498c2a18a.tar.gz |
MDEV-27314 InnoDB Buffer Pool Resize output cleanup
Cleaned up the log messages as suggested, with a minor code
formatting change.
On bullet point 13, I decided to not include timestamp in output
message. In most (all?) cases, the output goes to the log file,
which has timestamp already.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb_buffer_pool_resize_temporary.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/innodb/t/innodb_buffer_pool_resize_temporary.test b/mysql-test/suite/innodb/t/innodb_buffer_pool_resize_temporary.test index 1cdf4a318d0..8ada5bdb183 100644 --- a/mysql-test/suite/innodb/t/innodb_buffer_pool_resize_temporary.test +++ b/mysql-test/suite/innodb/t/innodb_buffer_pool_resize_temporary.test @@ -15,7 +15,7 @@ SET GLOBAL innodb_buffer_pool_size=8388608; let $wait_timeout = 60; 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 variable_name = 'INNODB_BUFFER_POOL_RESIZE_STATUS'; --source include/wait_condition.inc |