MSCEWI3057

Transformation for nested procedure or function is not supported yet.

Severity

Medium

Description

Translation for nested procedures or functions inside other functions or procedures is not supported yet. This is planned to be delivered in the future.

Example Code

Input Code:

CREATE OR REPLACE function FOO1 RETURN INTEGER AS
    FUNCTION FOO2 return integer;
    FUNCTION FOO2 RETURN INTEGER AS
    BEGIN
        RETURN 123;
    END;
BEGIN
    RETURN FOO2() + 456;
END;

Output Code:

Recommendations

  • No end-user actions are required.

  • If you need more support, you can email us at [email protected]

Last updated