Skip to content

Commit 3b61030

Browse files
author
Jan Lindström
committed
Fix error on innodb_mtflush_threads parameter.
1 parent 0b92fe9 commit 3b61030

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

storage/innobase/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16801,7 +16801,7 @@ static MYSQL_SYSVAR_BOOL(use_lz4, srv_use_lz4,
1680116801
#endif /* HAVE_LZ4 */
1680216802

1680316803
static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads,
16804-
PLUGIN_VAR_NOCMDARG | PLUGIN_VAR_READONLY,
16804+
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
1680516805
"Number of multi-threaded flush threads",
1680616806
NULL, NULL,
1680716807
MTFLUSH_DEFAULT_WORKER, /* Default setting */

storage/xtradb/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17955,7 +17955,7 @@ static MYSQL_SYSVAR_BOOL(use_lz4, srv_use_lz4,
1795517955
#endif /* HAVE_LZ4 */
1795617956

1795717957
static MYSQL_SYSVAR_LONG(mtflush_threads, srv_mtflush_threads,
17958-
PLUGIN_VAR_NOCMDARG | PLUGIN_VAR_READONLY,
17958+
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
1795917959
"Number of multi-threaded flush threads",
1796017960
NULL, NULL,
1796117961
MTFLUSH_DEFAULT_WORKER, /* Default setting */

0 commit comments

Comments
 (0)