Skip to content

Commit

Permalink
fix(db): syntax error in query
Browse files Browse the repository at this point in the history
Ref: SRX-0Q0FWU
  • Loading branch information
AminSlk committed Oct 8, 2024
1 parent cc5da90 commit 3dca7f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ func (h *DBHandler) DBSelectReleasesWithoutEnvironments(ctx context.Context, tx
ON
latest.latestEslVersion=releases.eslVersion
AND latest.releaseVersion=releases.releaseVersion
AND latest.appname=releases.appname;
AND latest.appname=releases.appname
WHERE COALESCE(environments, '') = '' AND COALESCE(manifests, '') != '';
`)
rows, err := tx.QueryContext(ctx, selectQuery)
Expand Down

0 comments on commit 3dca7f1

Please sign in to comment.