mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
Fix bug MDEV-4885: When performance schema is disabled, autosized parameters show 18446744073709551615 instead of -1
(patch by Serg)
This commit is contained in:
parent
31007e3422
commit
055e9cb49c
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ typedef Sys_var_integer<uint, GET_UINT, SHOW_UINT> Sys_var_uint;
|
|||
typedef Sys_var_integer<ulong, GET_ULONG, SHOW_ULONG> Sys_var_ulong;
|
||||
typedef Sys_var_integer<ha_rows, GET_HA_ROWS, SHOW_HA_ROWS> Sys_var_harows;
|
||||
typedef Sys_var_integer<ulonglong, GET_ULL, SHOW_ULONGLONG> Sys_var_ulonglong;
|
||||
typedef Sys_var_integer<long, GET_LONG, SHOW_LONG> Sys_var_long;
|
||||
typedef Sys_var_integer<long, GET_LONG, SHOW_SLONG> Sys_var_long;
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue