MSCEWI1088
Expressions like function calls, variables, or named constants are not allowed on default option in Snowflake
Medium
This error is added on the code when the default option is followed by expressions like function calls, variable names or named constants.
Snowflake only supports explicit constants like numbers or strings.
ALTER TABLE
T_ALTERTABLETEST
ADD
COLUMN COL10 INTEGER DEFAULT RANDOM(10)
ALTER TABLE PUBLIC.T_ALTERTABLETEST
ADD
COLUMN COL10 INTEGER
-- ** MSC-ERROR - MSCEWI1088 - ONLY EXPLICIT CONSTANTS ARE SUPPORTED ON DEFAULT CLAUSE **
-- DEFAULT RANDOM(10)
;
- For more support, you can email us at [email protected] or post a message to our forums. If you have a contract for support with Mobilize.Net, reach out to your sales engineer and they can direct your support needs.
Last modified 6mo ago