home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / sql_repl.h < prev    next >
C/C++ Source or Header  |  2000-11-16  |  646b  |  23 lines

  1. #ifndef SQL_REPL_H
  2. #define SQL_REPL_H
  3.  
  4. #include "slave.h"
  5.  
  6. extern char* master_host;
  7. extern my_string opt_bin_logname, master_info_file;
  8. extern I_List<i_string> binlog_do_db, binlog_ignore_db;
  9.  
  10. int start_slave(THD* thd = 0, bool net_report = 1);
  11. int stop_slave(THD* thd = 0, bool net_report = 1);
  12. int change_master(THD* thd);
  13. void reset_slave();
  14. void reset_master();
  15. int purge_master_logs(THD* thd, const char* to_log);
  16. bool log_in_use(const char* log_name);
  17. void adjust_linfo_offsets(my_off_t purge_offset);
  18. int show_binlogs(THD* thd);
  19. extern int init_master_info(MASTER_INFO* mi);
  20. void kill_zombie_dump_threads(uint32 slave_server_id);
  21.  
  22. #endif
  23.