1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
-- COPYRIGHT SNOWFLAKE
-- https://docs.snowflake.com/en/sql-reference/sql/alter-function.html
alter function if exists function1(number) rename to function2;
alter function function2(number) set secure;
alter function function4(number) set api_integration = api_integration_2;
alter function function5(number) set max_batch_rows = 100;
drop function multiply(number, number);
)))))__SQLFMT_OUTPUT__(((((
-- COPYRIGHT SNOWFLAKE
-- https://docs.snowflake.com/en/sql-reference/sql/alter-function.html
alter function if exists function1(number)
rename to function2
;
alter function function2(number)
set secure
;
alter function function4(number)
set api_integration = api_integration_2
;
alter function function5(number)
set max_batch_rows = 100
;
drop function multiply(number, number)
;
|