mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-22103 INNODB_ENCRYPTION_NUM_KEY_REQUESTS is missing from INFORMATION_SCHEMA.GLOBAL_STATUS
In commit a5584b13d1
some scrubbing-related status variables were removed along with
the background scrubbing code.
The status variable INNODB_ENCRYPTION_NUM_KEY_REQUESTS
was inadvertently removed as part of that.
innodb_status_variables[]: Restore "encryption_num_key_requests".
We introduce the test innodb.innodb_status_variables
in order to catch similar regressions in the future.
This commit is contained in:
7
mysql-test/suite/innodb/t/innodb_status_variables.test
Normal file
7
mysql-test/suite/innodb/t/innodb_status_variables.test
Normal file
@ -0,0 +1,7 @@
|
||||
--source include/have_innodb.inc
|
||||
SELECT variable_name FROM information_schema.global_status
|
||||
WHERE variable_name LIKE 'INNODB_%'
|
||||
AND variable_name NOT IN
|
||||
('INNODB_ADAPTIVE_HASH_HASH_SEARCHES','INNODB_ADAPTIVE_HASH_NON_HASH_SEARCHES',
|
||||
'INNODB_MEM_ADAPTIVE_HASH',
|
||||
'INNODB_BUFFERED_AIO_SUBMITTED','INNODB_BUFFER_POOL_PAGES_LATCHED');
|
Reference in New Issue
Block a user