Skip to content

Commit

Permalink
Fix for out of band
Browse files Browse the repository at this point in the history
  • Loading branch information
molivasdat authored Oct 11, 2023
1 parent 9fd0d2f commit ae5c92d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Changelogs/changelog.sql
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,16 @@ BEGIN
RETURN number_2;
END IF;
END;
--rollback DROP PROCEDURE return_greater(INTEGER, INTEGER)
--rollback DROP PROCEDURE return_greater(INTEGER, INTEGER)

-- changeset molivas:1697025109356-1 splitStatements:false
CREATE OR REPLACE PROCEDURE "RETURN_GREATER"("NUMBER_1" NUMBER(38,0), "NUMBER_2" NUMBER(38,0))
RETURNS NUMBER(38,0)
LANGUAGE SQL
EXECUTE AS OWNER
AS 'BEGIN
IF (number_1 > number_2) THEN
RETURN number_1;
ELSE
RETURN number_2;
--rollback DROP PROCEDURE return_greater(INTEGER, INTEGER)

0 comments on commit ae5c92d

Please sign in to comment.