SSC-EWI-OR0045
Cast type L and FML is not supported
Severity
Medium
Description
This issue happens when try to cast using FML or L format is not applicable in Snowflake, then the code is commented out and this message is being added.
Example Code:
Input Code:
SELECT CAST(' $123.45' as number, 'L999.99') FROM DUAL;
SELECT CAST('$123.45' as number, 'FML999.99') FROM DUAL;
Output Code:
SELECT
!!!RESOLVE EWI!!! /*** SSC-EWI-OR0045 - CAST TYPE L AND FML NOT SUPPORTED ***/!!!
CAST(' $123.45' as NUMBER(38, 18) , 'L999.99') FROM DUAL;
SELECT
!!!RESOLVE EWI!!! /*** SSC-EWI-OR0045 - CAST TYPE L AND FML NOT SUPPORTED ***/!!! CAST('$123.45' as NUMBER(38, 18) , 'FML999.99') FROM DUAL;
Recommendations
No additional user actions are required.
If you need more support, you can email us at [email protected]
Last updated