From d1fe1f2c192a4e1cf3445a4091bcbeb61db4ae13 Mon Sep 17 00:00:00 2001 From: Dylan Terry Date: Tue, 25 Feb 2025 10:33:50 -0500 Subject: [PATCH] Add BinlogEvent.ByteLen func --- replication/event.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/replication/event.go b/replication/event.go index dacd49b02..e9ece396a 100644 --- a/replication/event.go +++ b/replication/event.go @@ -38,6 +38,11 @@ func (e *BinlogEvent) Dump(w io.Writer) { e.Event.Dump(w) } +// ByteLen returns the total size of the raw event data in bytes. +func (e *BinlogEvent) ByteLen() int { + return len(e.RawData) +} + type Event interface { // Dump Event, format like python-mysql-replication Dump(w io.Writer)