When Language is SQL
This kind of functions are translated to functions as well in snowflake.
Sample Source Patterns
Greenplum
CREATE FUNCTION functionSignature
RETURNS nonVoidType
AS
$$
...
$$
LANGUAGE SQL
functionOptions
Snowflake
CREATE OR REPLACE FUNCTION functionSignature
RETURNS nonVoidType
LANGUAGE SQL
functionOptions
AS
$$
...
$$
Related EWIs
Last updated
Was this helpful?