mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
Fix for warning on -1 converted to 100 due to that
-1 was MAX which isn't a great idea.
This commit is contained in:
parent
bafbc5273f
commit
3c7a00f3be
1 changed files with 1 additions and 1 deletions
|
@ -8239,7 +8239,7 @@ static MYSQL_SYSVAR_BOOL(extra_dirty_writes, innobase_extra_dirty_writes,
|
||||||
static MYSQL_SYSVAR_LONG(io_capacity, innobase_io_capacity,
|
static MYSQL_SYSVAR_LONG(io_capacity, innobase_io_capacity,
|
||||||
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
|
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY,
|
||||||
"Number of IOPs the server can do. Tunes the background IO rate",
|
"Number of IOPs the server can do. Tunes the background IO rate",
|
||||||
NULL, NULL, (long)200, (long)100, (long)~0L, (long)0);
|
NULL, NULL, (long)200, (long)100, LONG_MAX, (long)0);
|
||||||
|
|
||||||
static MYSQL_SYSVAR_ULONG(fast_shutdown, innobase_fast_shutdown,
|
static MYSQL_SYSVAR_ULONG(fast_shutdown, innobase_fast_shutdown,
|
||||||
PLUGIN_VAR_OPCMDARG,
|
PLUGIN_VAR_OPCMDARG,
|
||||||
|
|
Loading…
Reference in a new issue