mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
A post-merge fix.
This commit is contained in:
@ -63,11 +63,11 @@ Guardian::get_instance_state_name(enum_instance_state state)
|
||||
Guardian::Guardian(Thread_registry *thread_registry_arg,
|
||||
Instance_map *instance_map_arg,
|
||||
uint monitoring_interval_arg)
|
||||
:monitoring_interval(monitoring_interval_arg),
|
||||
shutdown_requested(FALSE),
|
||||
stopped(FALSE),
|
||||
:stopped(FALSE),
|
||||
monitoring_interval(monitoring_interval_arg),
|
||||
thread_registry(thread_registry_arg),
|
||||
instance_map(instance_map_arg)
|
||||
instance_map(instance_map_arg),
|
||||
shutdown_requested(FALSE)
|
||||
{
|
||||
pthread_mutex_init(&LOCK_guardian, 0);
|
||||
pthread_cond_init(&COND_guardian, 0);
|
||||
|
@ -68,8 +68,7 @@ private:
|
||||
/* Names are conventionally the same as in mysqld */
|
||||
int check_connection();
|
||||
int do_command();
|
||||
int dispatch_command(enum enum_server_command command,
|
||||
const char *text, uint len);
|
||||
int dispatch_command(enum enum_server_command command, const char *text);
|
||||
};
|
||||
|
||||
#endif // INCLUDES_MYSQL_INSTANCE_MANAGER_MYSQL_CONNECTION_H
|
||||
|
Reference in New Issue
Block a user