Skip to content

Commit 0bdedf9

Browse files
committed
Corrected MissingTableMapEventException error message
1 parent e36e829 commit 0bdedf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/shyiko/mysql/binlog/event/deserialization/AbstractRowsEventDataDeserializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ protected Serializable[] deserializeRow(long tableId, BitSet includedColumns, By
6868
TableMapEventData tableMapEvent = tableMapEventByTableId.get(tableId);
6969
if (tableMapEvent == null) {
7070
throw new MissingTableMapEventException("No TableMapEventData has been found for table id:" + tableId +
71-
". Usually that means that you have started reading binary log 'within the logic group'" +
71+
". Usually that means that you have started reading binary log 'within the logical event group'" +
7272
" (e.g. from WRITE_ROWS and not proceeding TABLE_MAP");
7373
}
7474
byte[] types = tableMapEvent.getColumnTypes();

0 commit comments

Comments
 (0)