Skip to content

Commit

Permalink
desc
Browse files Browse the repository at this point in the history
  • Loading branch information
salamonpavel committed Nov 22, 2024
1 parent e3d198c commit e0f40a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ BEGIN
JOIN flows.partitioning_to_flow PF ON C.fk_partitioning = PF.fk_partitioning
WHERE PF.fk_flow = i_flow_id
AND (i_checkpoint_name IS NULL OR C.checkpoint_name = i_checkpoint_name)
ORDER BY C.process_start_time desc
ORDER BY C.process_start_time DESC
LIMIT i_checkpoints_limit OFFSET i_offset
)
SELECT
Expand All @@ -159,7 +159,7 @@ BEGIN
runs.measure_definitions MD ON M.fk_measure_definition = MD.id_measure_definition
INNER JOIN
runs.partitionings P ON LC.fk_partitioning = P.id_partitioning
ORDER BY LC.process_start_time desc;
ORDER BY LC.process_start_time DESC;
END;
$$
LANGUAGE plpgsql VOLATILE SECURITY DEFINER;
Expand Down

0 comments on commit e0f40a5

Please sign in to comment.