diff options
author | sasha@mysql.sashanet.com <> | 2000-10-26 22:11:55 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-10-26 22:11:55 -0600 |
commit | 75cd25a5794f43ae75cde851fb01ee4c3644c195 (patch) | |
tree | 1b71072bebf724dd061370737f97c2a08a176ae3 /sql/sql_repl.h | |
parent | c5a1c3c7df0f85deedf6601f9ea01f229e7eb67e (diff) | |
download | mariadb-git-75cd25a5794f43ae75cde851fb01ee4c3644c195.tar.gz |
fixed --skip-slave-thread bug
added PURGE MASTER LOGS TO and SHOW MASTER LOGS
fixed the output of SHOW MASTER STATUS
updated docs
Diffstat (limited to 'sql/sql_repl.h')
-rw-r--r-- | sql/sql_repl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sql/sql_repl.h b/sql/sql_repl.h index 9c8d43bda54..a0b60497773 100644 --- a/sql/sql_repl.h +++ b/sql/sql_repl.h @@ -14,7 +14,10 @@ int stop_slave(THD* thd = 0, bool net_report = 1); int change_master(THD* thd); void reset_slave(); void reset_master(); - +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); extern int init_master_info(MASTER_INFO* mi); void kill_zombie_dump_threads(uint32 slave_server_id); |