You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
As of current, replacing a UDF is a two-step operation: DROP FUNCTION, then CREATE FUNCTION. This method involves potential downtime between the two commands for the function that is being replaced.
Describe the solution you'd like
Support syntax like
CREATE OR REPLACEFUNCTIONfunction_name RETURNS return_type;
The text was updated successfully, but these errors were encountered:
CREATE OR REPLACE FUNCTION
#46122Feature request
Is your feature request related to a problem? Please describe.
As of current, replacing a UDF is a two-step operation: DROP FUNCTION, then CREATE FUNCTION. This method involves potential downtime between the two commands for the function that is being replaced.
Describe the solution you'd like
Support syntax like
The text was updated successfully, but these errors were encountered: