MDEV-36378 Recognize innodb_purge_rseg_truncate_frequency

In commit bda40ccb85 (MDEV-34803)
there was a spelling mistake that somehow causes the deprecated
parameter innodb_purge_rseg_truncate_frequency to be rejected
at server startup.
This commit is contained in:
Marko Mäkelä 2025-03-25 12:15:46 +02:00 committed by Sergei Golubchik
commit d84ceb586a
3 changed files with 8 additions and 2 deletions

View file

@ -1,2 +1,4 @@
--loose-innodb-flush-log-at-timeout=3
--innodb
--innodb-purge-rseg-truncate-frequency=64
--innodb-flush-log-at-timeout=3
--table_open_cache=200

View file

@ -3,6 +3,10 @@
--source include/not_valgrind.inc
--source include/word_size.inc
--disable_query_log
call mtr.add_suppression("'innodb-purge-rseg-truncate-frequency' was removed");
--enable_query_log
--vertical_results
--replace_regex /^\/\S+/PATH/ /\.\//PATH/
select VARIABLE_NAME, SESSION_VALUE, DEFAULT_VALUE, VARIABLE_SCOPE, VARIABLE_TYPE, VARIABLE_COMMENT, NUMERIC_MIN_VALUE, NUMERIC_MAX_VALUE, NUMERIC_BLOCK_SIZE, ENUM_VALUE_LIST, READ_ONLY, COMMAND_LINE_ARGUMENT from information_schema.system_variables

View file

@ -5220,7 +5220,7 @@ static int init_server_components()
MARIADB_REMOVED_OPTION("innodb-log-optimize-ddl"),
MARIADB_REMOVED_OPTION("innodb-lru-flush-size"),
MARIADB_REMOVED_OPTION("innodb-page-cleaners"),
MARIADB_REMOVED_OPTION("innodb-purge-truncate-frequency"),
MARIADB_REMOVED_OPTION("innodb-purge-rseg-truncate-frequency"),
MARIADB_REMOVED_OPTION("innodb-replication-delay"),
MARIADB_REMOVED_OPTION("innodb-scrub-log"),
MARIADB_REMOVED_OPTION("innodb-scrub-log-speed"),