Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions go/mysql/binlog_event.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ type BinlogEvent interface {

// RBR events.

// IsTableMapEvent returns true if this is a TABLE_MAP_EVENT.
// IsTableMap returns true if this is a TABLE_MAP_EVENT.
IsTableMap() bool
// IsWriteRowsEvent returns true if this is a WRITE_ROWS_EVENT.
// IsWriteRows returns true if this is a WRITE_ROWS_EVENT.
IsWriteRows() bool
// IsUpdateRowsEvent returns true if this is a UPDATE_ROWS_EVENT.
// IsUpdateRows returns true if this is a UPDATE_ROWS_EVENT.
IsUpdateRows() bool
// IsDeleteRowsEvent returns true if this is a DELETE_ROWS_EVENT.
// IsDeleteRows returns true if this is a DELETE_ROWS_EVENT.
IsDeleteRows() bool

// Timestamp returns the timestamp from the event header.
Expand Down