MSCEWI4059

Column data type is not supported in Snowflake.

triangle-exclamation

Severity

Medium

Description

This is EWI occurs when there are unsupported column data types.

Code Example

Input code

CREATE TABLE MYTABLE(
    COL1 MPDOUBLE NOT NULL
);

Output code:

CREATE TABLE MYTABLE(
    COL1 MPDOUBLE /*** MSC-ERROR - MSCEWI4059 - DATA TYPE MPDOUBLE IS NOT SUPPORTED ***/ NOT NULL
);

Recommendations

Last updated