summaryrefslogtreecommitdiff
path: root/sql/sql_repl.cc
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2001-05-31 16:54:16 -0600
committersasha@mysql.sashanet.com <>2001-05-31 16:54:16 -0600
commitbd109ae97cc911276cd7be65e59062237474eef4 (patch)
treef54d6a699dbe1eddbfa675e0e458c325605d4fe2 /sql/sql_repl.cc
parent0ca8dd1721e339915194af13a5c16bbc99bdc366 (diff)
downloadmariadb-git-bd109ae97cc911276cd7be65e59062237474eef4.tar.gz
fixed bug in CHANGE MASTER TO
Diffstat (limited to 'sql/sql_repl.cc')
-rw-r--r--sql/sql_repl.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/sql/sql_repl.cc b/sql/sql_repl.cc
index 3af757993b5..7ddf04f1b9a 100644
--- a/sql/sql_repl.cc
+++ b/sql/sql_repl.cc
@@ -684,14 +684,18 @@ int change_master(THD* thd)
// if we change host or port, we must reset the postion
glob_mi.log_file_name[0] = 0;
glob_mi.pos = 4; // skip magic number
+ glob_mi.pending = 0;
}
if(lex_mi->log_file_name)
strmake(glob_mi.log_file_name, lex_mi->log_file_name,
sizeof(glob_mi.log_file_name));
if(lex_mi->pos)
+ {
glob_mi.pos = lex_mi->pos;
-
+ glob_mi.pending = 0;
+ }
+
if(lex_mi->host)
{
strmake(glob_mi.host, lex_mi->host, sizeof(glob_mi.host));