MSCEWI1056
Create Type Not Supported
This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.
Severity
Low
Description
This message appears when a transformable Custom Type is defined, to add feedback about the transformable Custom Types being commented.
Example code
Input Code (Oracle):
CREATE TYPE type1 AS OBJECT (column1 INT);
CREATE OR REPLACE PROCEDURE record_procedure
IS
TYPE record_typ IS RECORD(col1 INTEGER, col2 FLOAT);
BEGIN
NULL;
END;
Output Code:
-- ** MSC-WARNING - MSCEWI1056 - CUSTOM TYPES ARE NOT SUPPORTED IN SNOWFLAKE BUT REFERENCES TO THIS CUSTOM TYPE WERE CHANGED TO VARIANT **
--CREATE TYPE type1 AS OBJECT (column1 INT);
CREATE OR REPLACE PROCEDURE PUBLIC.record_procedure ()
RETURNS VARCHAR
LANGUAGE SQL
EXECUTE AS CALLER
AS
$$
-- ** MSC-WARNING - MSCEWI1056 - CUSTOM TYPES ARE NOT SUPPORTED IN SNOWFLAKE BUT REFERENCES TO THIS CUSTOM TYPE WERE CHANGED TO OBJECT **
-- TYPE record_typ IS RECORD(col1 INTEGER, col2 FLOAT)
;
BEGIN
NULL;
END;
$$;
Recommendations
No end user actions are required.
If you need more support, you can email us at [email protected]
Last updated