SSC-FDM-0016
Constants are not supported by Snowflake Scripting. It was transformed to a variable.
Description
Snowflake Scripting does not support constants. Therefore, all constants inside procedures are being transformed into variables when the Snowflake Scripting flag is active.
Example code
Oracle:
CREATE OR REPLACE PROCEDURE p_constants
AS
my_const1 CONSTANT NUMBER := 40;
my_const2 CONSTANT NUMBER NOT NULL := 40;
BEGIN
NULL;
END;
Snowflake Scripting:
Recommendations
No end-user actions are required.
If you need more support, you can email us at [email protected]
Last updated
