SSC-FDM-OR0011
The boolean argument was removed because the "add to stack" options is not supported.
Description
This warning is displayed when the third optional argument of RAISE_APLICATION_ERROR was removed during the migration. This functionality is not supported by Snowflake.
Example Code
Input Code:
CREATE OR REPLACE FUNCTION TEST(SAMPLE_A IN NUMBER DEFAULT NULL,
SAMPLE_B IN NUMBER DEFAULT NULL)
RETURN NUMBER
AS
BEGIN
raise_application_error(-20001, 'First exception message', FALSE);
RETURN 1;
END TEST;Output Code:
Recommendations
No end-user actions are required.
If you need more support, you can email us at [email protected]
Last updated
