Skip to content

Commit

Permalink
Fix SQL query for sourcing releases without README
Browse files Browse the repository at this point in the history
  • Loading branch information
tchoutri committed Sep 11, 2022
1 parent 9fced39 commit c0a9141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Flora/Model/Release/Query.hs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ getPackageReleasesWithoutReadme =
from releases as r
join packages as p
on p.package_id = r.package_id
where r.readme_status is 'not-imported'
where r.readme_status = 'not-imported'
|]

getPackageReleasesWithoutUploadTimestamp :: [DB, IOE] :>> es => Eff es (Vector (ReleaseId, Version, PackageName))
Expand Down

0 comments on commit c0a9141

Please sign in to comment.