This is a deprecated version of the SnowConvert documentation, please visit the official site .
This EWI is added when the source code has a default value for BINARY data type, which is not supported in SnowFlake SQL
create table test1345
(
key1 binary default 0
);
CREATE OR REPLACE TABLE PUBLIC.test1345
(
key1 BINARY
-- ** MSC-WARNING - MSCEWI1080 - DEFAULT VALUE IS NOT ALLOWED ON BINARY COLUMNS **
-- default 0
);