MSCEWI1070

User defined function body not generated

This is a deprecated version of the SnowConvert documentation, please visit the official site HERE.

Severity

Critical

Description

This EWI appears when SnowConvert handles a critical exception that causes the function body not to be generated during its translation.

Example Code

SQL Server

CREATE FUNCTION func1
RETURNS BINARY
SELECT

Snowflake

CREATE OR REPLACE FUNCTION func1 ()
RETURNS BINARY
LANGUAGE SQL
AS
$$
 // ** MSC-ERROR - MSCEWI1070 - BODY NOT GENERATED FOR FUNCTION 'func1', AT LINE 0. ** 
$$

Recommendations

Last updated