diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-04-24 17:39:26 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-04-24 17:39:26 -0600 |
commit | dc394cb9b5f0fafd55c2398d929fc1229b452f76 (patch) | |
tree | 6a52fed2fc785303fcfb8cd3ae1d28e1c0bf6ecf /sql/sql_repl.h | |
parent | 0574441192273bd210232919eb72f2fc7eb153b2 (diff) | |
download | mariadb-git-dc394cb9b5f0fafd55c2398d929fc1229b452f76.tar.gz |
fixed redundant repetition of use db in mysqlbinlog
added support for virtual master ( replicating from a directory with binlogs)
test case for backup/restore with virtual master
client/mysqltest.c:
fix to accomodate for new test case
mysql-test/mysql-test-run.sh:
do not automagically start slave
sql/log.cc:
support for virtual master
sql/log_event.cc:
fix for mysqlbinlog
sql/log_event.h:
fix for mysqlbinlog
sql/mysqlbinlog.cc:
fix for mysqlbinlog
sql/slave.cc:
virtual master
sql/slave.h:
virtual master
sql/sql_class.h:
clean-up/fixes for virtual master
sql/sql_repl.cc:
cleanup/fixes for virtual master
sql/sql_repl.h:
virtual master
Diffstat (limited to 'sql/sql_repl.h')
-rw-r--r-- | sql/sql_repl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/sql_repl.h b/sql/sql_repl.h index f8a67f51aa2..68f2b4ba6c4 100644 --- a/sql/sql_repl.h +++ b/sql/sql_repl.h @@ -9,6 +9,9 @@ extern uint32 server_id; extern bool server_id_supplied; extern I_List<i_string> binlog_do_db, binlog_ignore_db; +File open_binlog(IO_CACHE *log, const char *log_file_name, + const char **errmsg); + 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); |