mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Merge branch '11.4' into 11.7
* rpl.rpl_system_versioning_partitions updated for MDEV-32188 * innodb.row_size_error_log_warnings_3 changed error for MDEV-33658 (checks are done in a different order)
This commit is contained in:
commit
ba01c2aaf0
470 changed files with 12024 additions and 6918 deletions
|
|
@ -541,12 +541,13 @@ read_relay_log_description_event(IO_CACHE *cur_log, ulonglong start_pos,
|
|||
if (my_b_tell(cur_log) >= start_pos)
|
||||
break;
|
||||
|
||||
if (!(ev= Log_event::read_log_event(cur_log, fdev,
|
||||
int read_error;
|
||||
if (!(ev= Log_event::read_log_event(cur_log, &read_error, fdev,
|
||||
opt_slave_sql_verify_checksum)))
|
||||
{
|
||||
DBUG_PRINT("info",("could not read event, cur_log->error=%d",
|
||||
cur_log->error));
|
||||
if (cur_log->error) /* not EOF */
|
||||
DBUG_PRINT("info",("could not read event, read_error=%d",
|
||||
read_error));
|
||||
if (read_error) /* not EOF */
|
||||
{
|
||||
*errmsg= "I/O error reading event at position 4";
|
||||
delete fdev;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue