Skip to content

Commit

Permalink
explicit asc ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
salamonpavel committed Nov 26, 2024
1 parent 877fac3 commit 57c5bbe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ BEGIN
END DESC,
CASE
WHEN NOT i_latest_first THEN C.process_start_time
END
END ASC
LIMIT i_checkpoints_limit OFFSET i_offset
)
SELECT
Expand Down Expand Up @@ -173,7 +173,7 @@ BEGIN
END DESC,
CASE
WHEN NOT i_latest_first THEN LC.process_start_time
END;
END ASC;
END;
$$
LANGUAGE plpgsql VOLATILE SECURITY DEFINER;
Expand Down

0 comments on commit 57c5bbe

Please sign in to comment.