diff options
author | unknown <sasha@laptop.slkc.uswest.net> | 2000-11-11 14:50:39 -0700 |
---|---|---|
committer | unknown <sasha@laptop.slkc.uswest.net> | 2000-11-11 14:50:39 -0700 |
commit | 19d2e8ce98ed4f77f94f1cde422f3ace73f64315 (patch) | |
tree | 151539228a360db4526847582397a4c1edbdfa8d /sql/sql_repl.h | |
parent | d2ce6383e9c43589cfb900a7c49c04b20e05ac88 (diff) | |
download | mariadb-git-19d2e8ce98ed4f77f94f1cde422f3ace73f64315.tar.gz |
laptop commit, syncing with the repostitory. Fixed some bad bugs in replication
BUILD/compile-pentium-debug:
added -DEXTRA_DEBUG
sql/Makefile.am:
added slave.h
sql/log_event.h:
max_buf -> event_len in read_log_event
sql/mysql_priv.h:
moved the slave part to slave.h
sql/mysqld.cc:
changes for replcate_do/ignore_table ( does not work yet)
sql/slave.cc:
removed the stuff covered by slave.h
sql/sql_class.h:
moved slave stuff to slave.h
sql/sql_repl.h:
removed stuff covered by slave.h
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/sql_repl.h')
-rw-r--r-- | sql/sql_repl.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sql/sql_repl.h b/sql/sql_repl.h index a0b60497773..240efb81fe4 100644 --- a/sql/sql_repl.h +++ b/sql/sql_repl.h @@ -1,11 +1,9 @@ #ifndef SQL_REPL_H #define SQL_REPL_H -extern bool slave_running; -extern volatile bool abort_slave; +#include "slave.h" + extern char* master_host; -extern pthread_t slave_real_id; -extern MASTER_INFO glob_mi; extern my_string opt_bin_logname, master_info_file; extern I_List<i_string> binlog_do_db, binlog_ignore_db; |