From 34c13d1079565ecf485812e19e3505490f74f4a9 Mon Sep 17 00:00:00 2001 From: ParadoxV5 Date: Sat, 11 Jul 2026 23:43:05 -0600 Subject: [PATCH] Fix `Gtid_log_event::is_part_of_group()` It is the only event type that returns `true` in `Log_event::is_part_of_group(enum Log_event_type)` but `false` in `Log_event::is_part_of_group()`. --- sql/log_event.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sql/log_event.h b/sql/log_event.h index 88b26c10a617c..4e96f82e1bf81 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -3777,6 +3777,9 @@ class Gtid_log_event: public Log_event enum enum_binlog_checksum_alg checksum_alg, uint32 *domain_id, uint32 *server_id, uint64 *seq_no, uchar *flags2, const Format_description_log_event *fdev); +#ifdef HAVE_REPLICATION + bool is_part_of_group() override { return true; } +#endif #endif };