1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

bug fixes in server-id, moved replication functionality to

sql_repl.* will push this one, since the replication code now works
This commit is contained in:
sasha@mysql.sashanet.com
2000-09-29 17:20:26 -06:00
parent 079d859072
commit 62a6a0fdf1
10 changed files with 41 additions and 527 deletions

View File

@ -270,8 +270,9 @@ static void dump_remote_log_entries(const char* logname)
int4store(buf, position);
int2store(buf + 4, binlog_flags);
len = (uint) strlen(logname);
memcpy(buf + 6, logname,len);
if(mc_simple_command(mysql, COM_BINLOG_DUMP, buf, len + 6, 1))
int4store(buf + 6, 0);
memcpy(buf + 10, logname,len);
if(mc_simple_command(mysql, COM_BINLOG_DUMP, buf, len + 10, 1))
die("Error sending the log dump command");
for(;;)