2000-10-02 05:28:21 +02:00
|
|
|
#ifndef SQL_REPL_H
|
|
|
|
#define SQL_REPL_H
|
|
|
|
|
2000-11-11 22:50:39 +01:00
|
|
|
#include "slave.h"
|
|
|
|
|
2000-10-02 05:28:21 +02:00
|
|
|
extern char* master_host;
|
|
|
|
extern my_string opt_bin_logname, master_info_file;
|
2000-12-08 20:50:57 +01:00
|
|
|
extern uint32 server_id;
|
|
|
|
extern bool server_id_supplied;
|
2000-10-02 05:28:21 +02:00
|
|
|
extern I_List<i_string> binlog_do_db, binlog_ignore_db;
|
|
|
|
|
|
|
|
int start_slave(THD* thd = 0, bool net_report = 1);
|
|
|
|
int stop_slave(THD* thd = 0, bool net_report = 1);
|
|
|
|
int change_master(THD* thd);
|
|
|
|
void reset_slave();
|
|
|
|
void reset_master();
|
2000-10-27 06:11:55 +02:00
|
|
|
int purge_master_logs(THD* thd, const char* to_log);
|
|
|
|
bool log_in_use(const char* log_name);
|
|
|
|
void adjust_linfo_offsets(my_off_t purge_offset);
|
|
|
|
int show_binlogs(THD* thd);
|
2000-10-02 05:28:21 +02:00
|
|
|
extern int init_master_info(MASTER_INFO* mi);
|
|
|
|
void kill_zombie_dump_threads(uint32 slave_server_id);
|
|
|
|
|
|
|
|
#endif
|