Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support replacing UDF in-place with CREATE OR REPLACE FUNCTION #46253

Closed
1 task done
digitalpoetry opened this issue May 25, 2024 · 0 comments · Fixed by #46122 or #46590
Closed
1 task done

Support replacing UDF in-place with CREATE OR REPLACE FUNCTION #46253

digitalpoetry opened this issue May 25, 2024 · 0 comments · Fixed by #46122 or #46590

Comments

@digitalpoetry
Copy link
Contributor

digitalpoetry commented May 25, 2024

Feature 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

CREATE OR REPLACE FUNCTION function_name RETURNS return_type;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment