mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Port cleanups, trivial refactoring and code rearrangements from
Alik's patch for BUG#22306: STOP INSTANCE can not be applied for instances in Crashed, Failed and Abandoned" to ease review process. Evaluate global variable linuxthreads before starting threads to avoid a race. server-tools/instance-manager/buffer.cc: Fix spelling. server-tools/instance-manager/command.h: Fix spelling. server-tools/instance-manager/commands.cc: Fix spelling. server-tools/instance-manager/commands.h: Fix spelling, tidy up. server-tools/instance-manager/guardian.cc: Cleanup logging, options.get_shutdown_delay() is a method, tidy up. server-tools/instance-manager/instance.cc: Rearrange methods to be the same as in Alik's patch, fix spelling errors, clean up logging texts, port comments from Alik's patch, implement some basic renames from his patch. No real changes. server-tools/instance-manager/instance.h: Tidy up, renames. server-tools/instance-manager/instance_map.cc: Fix spellings, port some refactoring from Alik's patch. server-tools/instance-manager/instance_map.h: Cleanup. server-tools/instance-manager/instance_options.cc: Cleanup. Implement Instance_options::get_shutdown_delay() and Instance_options::get_mysqld_port(). server-tools/instance-manager/instance_options.h: Cleanup. server-tools/instance-manager/listener.cc: Cleanup. server-tools/instance-manager/log.cc: Fix spelling. server-tools/instance-manager/manager.cc: Cleanup. server-tools/instance-manager/manager.h: Add getters for Manager members. server-tools/instance-manager/mysqlmanager.cc: Evaluate linuxthreads before starting threads to avoid a race. server-tools/instance-manager/parse_output.cc: Fix spelling. server-tools/instance-manager/priv.cc: Cleanup. server-tools/instance-manager/priv.h: Cleanup. server-tools/instance-manager/user_management_commands.cc: Fix spelling. server-tools/instance-manager/user_management_commands.h: Fix spelling. server-tools/instance-manager/user_map.cc: Fix spelling.
This commit is contained in:
@ -49,7 +49,7 @@ static const int modify_defaults_to_im_error[]= { 0, ER_OUT_OF_RESOURCES,
|
||||
/*
|
||||
Add a string to a buffer.
|
||||
|
||||
SYNOPSYS
|
||||
SYNOPSIS
|
||||
put_to_buff()
|
||||
buff buffer to add the string
|
||||
str string to add
|
||||
@ -590,7 +590,7 @@ Create_instance::Create_instance(const LEX_STRING *instance_name_arg)
|
||||
/*
|
||||
This operation initializes Create_instance object.
|
||||
|
||||
SYNOPSYS
|
||||
SYNOPSIS
|
||||
text [IN/OUT] a pointer to the text containing instance options.
|
||||
|
||||
RETURN
|
||||
@ -607,7 +607,7 @@ bool Create_instance::init(const char **text)
|
||||
/*
|
||||
This operation parses CREATE INSTANCE options.
|
||||
|
||||
SYNOPSYS
|
||||
SYNOPSIS
|
||||
text [IN/OUT] a pointer to the text containing instance options.
|
||||
|
||||
RETURN
|
||||
@ -1255,7 +1255,7 @@ bool Abstract_option_cmd::init(const char **text)
|
||||
Correct the option file. The "skip" option is used to remove the found
|
||||
option.
|
||||
|
||||
SYNOPSYS
|
||||
SYNOPSIS
|
||||
Abstract_option_cmd::correct_file()
|
||||
skip Skip the option, being searched while writing the result file.
|
||||
That is, to delete it.
|
||||
@ -1395,7 +1395,7 @@ int Abstract_option_cmd::execute_impl(st_net *net, ulong connection_id)
|
||||
/*
|
||||
This operation parses SET options.
|
||||
|
||||
SYNOPSYS
|
||||
SYNOPSIS
|
||||
text [IN/OUT] a pointer to the text containing options.
|
||||
|
||||
RETURN
|
||||
@ -1569,7 +1569,7 @@ int Set_option::process_option(Instance *instance, Named_value *option)
|
||||
/*
|
||||
This operation parses UNSET options.
|
||||
|
||||
SYNOPSYS
|
||||
SYNOPSIS
|
||||
text [IN/OUT] a pointer to the text containing options.
|
||||
|
||||
RETURN
|
||||
|
Reference in New Issue
Block a user