Skip to content

Commit

Permalink
Refactor MySQLBaseRowsBinlogEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Aug 17, 2024
1 parent acdc118 commit 43d11b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ private MySQLDeleteRowsBinlogEvent decodeDeleteRowsEventV2(final MySQLBinlogEven
MySQLBinlogRowsEventPacket packet = new MySQLBinlogRowsEventPacket(binlogEventHeader, payload);
MySQLBinlogTableMapEventPacket tableMapEventPacket = binlogContext.getTableMapEvent(packet.getTableId());
packet.readRows(tableMapEventPacket, payload);
MySQLDeleteRowsBinlogEvent result = new MySQLDeleteRowsBinlogEvent(tableMapEventPacket.getSchemaName(), tableMapEventPacket.getTableName(), packet.getRows());
MySQLDeleteRowsBinlogEvent result = new MySQLDeleteRowsBinlogEvent(tableMapEventPacket.getSchemaName(), tableMapEventPacket.getTableName(), packet.getRows());
initRowsEvent(result, binlogEventHeader);
return result;
}
Expand Down

0 comments on commit 43d11b3

Please sign in to comment.