-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Does DuckDB support "Create or Replace Function" kind UDF? #1374
Comments
We do support Macro-style functions, see #1129. Does this address your use case? |
I wonder whether @alitrack meant support for the syntax |
@jdf-id-au - What timing! I was just looking for exactly what you described. Since it appears that it doesn't exist, I'll go ahead and use the |
CREATE OR REPLACE is just syntactic sugar for DROP and CREATE happening in the same transaction. Transaction isolation (as part of ACID) should prevent any race conditions as long as it is happening in the same transaction. |
That makes sense. Thanks! |
Add implementations for narrow DECIMAL ordering arguments.
thanks.
The text was updated successfully, but these errors were encountered: