Skip to content

Commit

Permalink
Fix sql string escaping (#8163)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tonkonozhenko authored Nov 6, 2024
1 parent 5cd96a1 commit 3a7acd6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions backend/plugins/dora/tasks/incident_from_issue_generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ func ConvertIssuesToIncidents(taskCtx plugin.SubTaskContext) errors.Error {
FROM issues i
LEFT JOIN board_issues bi ON bi.issue_id = i.id
LEFT JOIN project_mapping pm ON pm.row_id = bi.board_id
WHERE i.type = "INCIDENT"
WHERE i.type = ?
AND pm.project_name = ?
AND pm.table = "boards")
AND pm.table = ?)
`
if err := db.Exec(deleteIncidentsSql, data.Options.ProjectName); err != nil {
if err := db.Exec(deleteIncidentsSql, "INCIDENT", data.Options.ProjectName, "boards"); err != nil {
return errors.Default.Wrap(err, "error deleting previous incidents")

}
Expand All @@ -73,11 +73,11 @@ func ConvertIssuesToIncidents(taskCtx plugin.SubTaskContext) errors.Error {
FROM issues i
LEFT JOIN board_issues bi ON bi.issue_id = i.id
LEFT JOIN project_mapping pm ON pm.row_id = bi.board_id
WHERE i.type = "INCIDENT"
WHERE i.type = ?
AND pm.project_name = ?
AND pm.table = "boards")
AND pm.table = ?)
`
if err := db.Exec(deleteIncidentAssigneesSql, data.Options.ProjectName); err != nil {
if err := db.Exec(deleteIncidentAssigneesSql, "INCIDENT", data.Options.ProjectName, "boards"); err != nil {
return errors.Default.Wrap(err, "error deleting previous incident_assignees")
}

Expand Down

0 comments on commit 3a7acd6

Please sign in to comment.