Skip to content

Commit

Permalink
Fixed SQL typo IN->any (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
gsleap committed Oct 4, 2023
1 parent 1e933f6 commit d562043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def get_delete_requests(
if optional_request_id_list:
sql = """SELECT id
FROM deletion_requests
WHERE id ANY(%s)
WHERE id = ANY(%s)
AND cancelled_datetime IS NULL
AND actioned_datetime IS NULL
AND approved_datetime IS NOT NULL
Expand Down

0 comments on commit d562043

Please sign in to comment.