Skip to content

Commit

Permalink
lightning: fix delete additionally inserted rows for conflict detecti…
Browse files Browse the repository at this point in the history
…on 'replace' mode failed (#52888)

close #52886
  • Loading branch information
lyzx2001 authored Apr 25, 2024
1 parent 6ed307e commit 54ba0ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/lightning/errormanager/errormanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const (

deleteNullDataRow = `
DELETE FROM %s.` + ConflictErrorTableName + `
WHERE key_data = "" and row_data = "";
WHERE key_data = '' and row_data = '';
`

insertIntoDupRecord = `
Expand Down

0 comments on commit 54ba0ed

Please sign in to comment.