Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the function name in the comment #4570

Merged
merged 1 commit into from
Jan 30, 2019
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