mirror of
https://github.com/MariaDB/server.git
synced 2026-04-22 16:25:30 +02:00
Bug #37168: Missing variable - skip_name_resolve
Added a read-only global boolean variable skip_name_resolve.
This commit is contained in:
parent
6eca53f1d3
commit
e65caec138
7 changed files with 73 additions and 0 deletions
|
|
@ -533,6 +533,10 @@ static sys_var_const sys_skip_show_database(&vars, "skip_show_database",
|
|||
OPT_GLOBAL, SHOW_BOOL,
|
||||
(uchar*) &opt_skip_show_db);
|
||||
|
||||
static sys_var_const sys_skip_name_resolve(&vars, "skip_name_resolve",
|
||||
OPT_GLOBAL, SHOW_BOOL,
|
||||
(uchar*) &opt_skip_name_resolve);
|
||||
|
||||
static sys_var_const sys_socket(&vars, "socket",
|
||||
OPT_GLOBAL, SHOW_CHAR_PTR,
|
||||
(uchar*) &mysqld_unix_port);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue