Skip to content

Commit

Permalink
fix: make sql query PostgreSQL compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Tonkonozhenko authored Oct 30, 2024
1 parent dc6698d commit 6fc8b2a
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 6fc8b2a

Please sign in to comment.