diff options
author | Monty <monty@mariadb.org> | 2020-03-17 21:39:04 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2020-03-17 21:39:04 +0200 |
commit | 9f10bbab41d50549ab00f10d6e41d6a28ce7a567 (patch) | |
tree | 90a50ffa2c64d136946fd397eaafa649dc5e1515 | |
parent | 31e2dd9d2d1bb6c679f52484a44c50d247883a94 (diff) | |
download | mariadb-git-bb-10.5-monty3.tar.gz |
Debug push to find problem with rpl.rpl_skip_replicationbb-10.5-monty3
-rw-r--r-- | sql/sql_repl.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sql/sql_repl.cc b/sql/sql_repl.cc index b8de0d411e0..51a0f973cf9 100644 --- a/sql/sql_repl.cc +++ b/sql/sql_repl.cc @@ -2304,7 +2304,10 @@ static int send_format_descriptor_event(binlog_send_info *info, IO_CACHE *log, "checksum that master is configured to log"; sql_print_warning("Master is configured to log replication events " "with checksum, but will not send such events to " - "slaves that cannot process them"); + "slaves that cannot process them " + "current: %d slave: %d", + (int) info->current_checksum_alg, + (int) is_slave_checksum_aware(thd)); DBUG_RETURN(1); } |