MSCEWI1037
Translation planned for the future.
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
This EWI is deprecated, SnowConvert version used is out of date.
Severity
Medium
Description
This error is used when a specific statement from the source code is not being converted yet but is planned to be delivered in the future.
Example Code
Input Code:
SELECT INTERVAL '11 10:09:08.555' DAY TO SECOND(3) FROM DUAL;
Output Code:
SELECT
/*** MSC-ERROR - MSCEWI1037 - TRANSLATION FOR INTERVAL DAY TO SECOND IS PLANNED TO BE DELIVERED IN THE FUTURE ***/
INTERVAL '11 10:09:08.555' DAY TO SECOND(3) FROM DUAL;
Input Code:
CREATE PROCEDURE PROC1 AS
SET VARIABLE1 = NOTSUPPORTEDNODE
Output Code:
CREATE OR REPLACE PROCEDURE dbo.sp_GAR_Rater_v3_2 ()
...
COL1 = defaultExpression
// ** MSC-ERROR - MSCEWI1037 - TRANSLATION FOR NOTSUPPORTEDNODE IS PLANNED TO BE DELIVERED IN THE FUTURE **
// NOTSUPPORTEDNODE
To assure transformation continues as intended, a defaultExpression
is added. This means a translation is not supported yet.
Recommendations
If you need more support, you can email us at [email protected]
Last updated