diff options
author | unknown <guilhem@mysql.com> | 2004-01-18 17:51:20 +0100 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2004-01-18 17:51:20 +0100 |
commit | 65ae377fcbff45bcc83c9c263acaad5c9fc3f61c (patch) | |
tree | d58180863bf683595c4abbe5ab5d27624b69bbbe /sql/sql_repl.h | |
parent | e780ddfa188ab52c8522d1889194b665c7de9100 (diff) | |
download | mariadb-git-65ae377fcbff45bcc83c9c263acaad5c9fc3f61c.tar.gz |
BUG#2428 "--old-rpl-compat is broken":
I remove the --old-rpl-compat which produces broken binlogs readable
neither by 4.0 nor by 3.23.
This option is a leftover of the early replication of 4.0.0, when
it was still partly compatible with 3.23.
I explained this to the user in the bug report.
sql/mysqld.cc:
removing --old-rpl-compat
sql/sql_load.cc:
removing --old-rpl-compat
sql/sql_repl.h:
removing --old-rpl-compat
Diffstat (limited to 'sql/sql_repl.h')
-rw-r--r-- | sql/sql_repl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_repl.h b/sql/sql_repl.h index c73744c4b7c..570c41c98f7 100644 --- a/sql/sql_repl.h +++ b/sql/sql_repl.h @@ -11,7 +11,7 @@ typedef struct st_slave_info THD* thd; } SLAVE_INFO; -extern my_bool opt_show_slave_auth_info, opt_old_rpl_compat; +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; |