diff options
author | unknown <lars@mysql.com> | 2005-03-08 21:12:35 +0100 |
---|---|---|
committer | unknown <lars@mysql.com> | 2005-03-08 21:12:35 +0100 |
commit | 4b3caa85c426291bec6c51f3cc3c6b500ca0e6f2 (patch) | |
tree | 7dc43286c3d1cf707590b97eade867ab84c279cf /sql/sql_repl.h | |
parent | ceaacb741ab607ec42c2d5e863f2f7c527825aae (diff) | |
download | mariadb-git-4b3caa85c426291bec6c51f3cc3c6b500ca0e6f2.tar.gz |
WL#2472: Refactoring of replication and binlog filtering.
Needed to be able to have multiple masters connected
to same slave server with different filters.
sql/Makefile.am:
Add table_filter.cc
sql/log.cc:
Use Table_filter
sql/log_event.cc:
Use Table_filter
sql/mysql_priv.h:
Use Table_filter
sql/mysqld.cc:
Use Table_filter
sql/repl_failsafe.cc:
Use Table_filter
sql/slave.cc:
Use Table_filter
sql/slave.h:
Use Table_filter
sql/sql_acl.cc:
Use Table_filter
sql/sql_class.h:
Use const since they should not be changed
sql/sql_parse.cc:
Use Table_filter
sql/sql_repl.cc:
Use Table_filter
sql/sql_repl.h:
Use Table_filter
Diffstat (limited to 'sql/sql_repl.h')
-rw-r--r-- | sql/sql_repl.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/sql_repl.h b/sql/sql_repl.h index e8497fee343..a13c1076b2c 100644 --- a/sql/sql_repl.h +++ b/sql/sql_repl.h @@ -31,7 +31,6 @@ typedef struct st_slave_info extern my_bool opt_show_slave_auth_info; extern char *master_host, *master_info_file; extern bool server_id_supplied; -extern I_List<i_string> binlog_do_db, binlog_ignore_db; extern int max_binlog_dump_events; extern my_bool opt_sporadic_binlog_dump_fail; |