Fix the date ordering on the package output history page
This commit is contained in:
parent
f87583016e
commit
96bf658dfc
1 changed files with 1 additions and 1 deletions
|
|
@ -411,7 +411,7 @@ FROM (
|
||||||
AND last_git_branches.name = $3
|
AND last_git_branches.name = $3
|
||||||
AND package_derivations_by_guix_revision_range.system = $5
|
AND package_derivations_by_guix_revision_range.system = $5
|
||||||
AND package_derivations_by_guix_revision_range.target = $6
|
AND package_derivations_by_guix_revision_range.target = $6
|
||||||
ORDER BY first_datetime DESC, package_version DESC
|
ORDER BY first_datetime ASC, package_version DESC
|
||||||
) AS data1
|
) AS data1
|
||||||
WINDOW path_window AS (PARTITION BY path)
|
WINDOW path_window AS (PARTITION BY path)
|
||||||
) AS data2
|
) AS data2
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue