diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2021-01-13 18:55:56 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2021-01-13 18:55:56 +0200 |
commit | ea9cd97f855fddf91f011434e8289ce5eba52528 (patch) | |
tree | 8420b102f102b44202c117d362ad3d525f86cf39 /storage/innobase/srv | |
parent | 25db70f912f9c2535d7b49b123e042815cb7b1a6 (diff) | |
download | mariadb-git-ea9cd97f855fddf91f011434e8289ce5eba52528.tar.gz |
MDEV-24536 innodb_idle_flush_pct has no effect
The parameter innodb_idle_flush_pct that was introduced in
MariaDB Server 10.1.2 by MDEV-6932 has no effect ever since
the InnoDB changes from MySQL 5.7.9 were applied in
commit 2e814d4702d71a04388386a9f591d14a35980bfe.
Let us declare the parameter as deprecated and having no effect.
Diffstat (limited to 'storage/innobase/srv')
-rw-r--r-- | storage/innobase/srv/srv0srv.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/storage/innobase/srv/srv0srv.cc b/storage/innobase/srv/srv0srv.cc index f1216dcd51e..4974b50d6c6 100644 --- a/storage/innobase/srv/srv0srv.cc +++ b/storage/innobase/srv/srv0srv.cc @@ -3,7 +3,7 @@ Copyright (c) 1995, 2017, Oracle and/or its affiliates. All Rights Reserved. Copyright (c) 2008, 2009 Google Inc. Copyright (c) 2009, Percona Inc. -Copyright (c) 2013, 2020, MariaDB Corporation. +Copyright (c) 2013, 2021, MariaDB Corporation. Portions of this file contain modifications contributed and copyrighted by Google, Inc. Those modifications are gratefully acknowledged and are described @@ -272,9 +272,6 @@ ulong srv_buf_pool_dump_pct; /** Lock table size in bytes */ ulint srv_lock_table_size = ULINT_MAX; -/** innodb_idle_flush_pct */ -ulong srv_idle_flush_pct; - /** copy of innodb_read_io_threads */ ulint srv_n_read_io_threads; /** copy of innodb_write_io_threads */ |