From c68ed2dc09dd8e375c148bbc7a5de8348ebdb682 Mon Sep 17 00:00:00 2001 From: xichengliudui Date: Wed, 30 Jan 2019 03:03:36 -0500 Subject: [PATCH] Update the function name in the comment Signed-off-by: xichengliudui --- go/mysql/binlog_event.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/go/mysql/binlog_event.go b/go/mysql/binlog_event.go index 3e3909f78fa..dd0faa17c9d 100644 --- a/go/mysql/binlog_event.go +++ b/go/mysql/binlog_event.go @@ -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.