mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
Merge branch '10.6' into 10.11
This commit is contained in:
commit
e69f8cae1a
344 changed files with 8492 additions and 2501 deletions
|
|
@ -1067,14 +1067,15 @@ do_retry:
|
|||
/* The loop is here so we can try again the next relay log file on EOF. */
|
||||
for (;;)
|
||||
{
|
||||
int error;
|
||||
old_offset= cur_offset;
|
||||
ev= Log_event::read_log_event(&rlog, description_event,
|
||||
ev= Log_event::read_log_event(&rlog, &error, description_event,
|
||||
opt_slave_sql_verify_checksum);
|
||||
cur_offset= my_b_tell(&rlog);
|
||||
|
||||
if (ev)
|
||||
break;
|
||||
if (unlikely(rlog.error < 0))
|
||||
if (unlikely(error))
|
||||
{
|
||||
errmsg= "slave SQL thread aborted because of I/O error";
|
||||
err= 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue