Tweak the sort order for derivation counts

So that the non-cross derivations appear first.
This commit is contained in:
Christopher Baines 2020-02-08 11:42:24 +00:00
parent f9871faa88
commit bb271c366b

View file

@ -59,6 +59,6 @@ WHERE package_derivations.id IN (
WHERE guix_revisions.commit = $1 WHERE guix_revisions.commit = $1
) )
GROUP BY package_derivations.system, package_derivations.target GROUP BY package_derivations.system, package_derivations.target
ORDER BY package_derivations.system DESC, package_derivations.target DESC") ORDER BY package_derivations.system DESC, package_derivations.target ASC")
(exec-query conn query (list commit-hash))) (exec-query conn query (list commit-hash)))