Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
hongyunyan committed Feb 27, 2025
1 parent 5cbf338 commit 6662b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sink/mysql/mysql_writer_dml.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func (w *MysqlWriter) generateBatchSQL(events []*commonEvent.DMLEvent) ([]string

finalRowLists := make([]*commonEvent.RowChange, len(rowLists))

for i := 0; i <= len(rowLists); i++ {
for i := 0; i < len(rowLists); i++ {
finalRowLists = append(finalRowLists, rowLists[i].RowChange)
}

Expand Down

0 comments on commit 6662b2e

Please sign in to comment.