Skip to content

Commit

Permalink
Fixes #189 - Implementing GitHub comments
Browse files Browse the repository at this point in the history
  • Loading branch information
TebaleloS committed Apr 30, 2024
1 parent 6edc40a commit 6c9be0c
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ $$
--
-- Status codes:
-- 11 - OK
-- 16 - No record found for the given partitioning
-- 41 - Partitioning not found
--
-------------------------------------------------------------------------------
Expand Down Expand Up @@ -95,12 +94,6 @@ BEGIN
c.id_checkpoint
LIMIT nullif(i_limit, 0);

IF NOT FOUND THEN
status := 16;
status_text := 'No checkpoints were found for the given partitioning.';
RETURN NEXT;
RETURN;
END IF;
END;
$$

Expand Down

0 comments on commit 6c9be0c

Please sign in to comment.