Replies: 1 comment 1 reply
-
@mesejo Thanks for the question! Yeah, I think it could consolidate the code and make it easier for folks to contribute new operation implementations to have a single place to go for referencing and defining UDFs. Would happily accept PRs! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, each UDF in DataFusion is registered at runtime in the function defined for the operation, for example:
So (IIUC) every time the
ops.DayOfWeekName
is executed the code will try to register the UDF.So the question is should we instead do it at
do_connect
like in SQLite? (see here)Beta Was this translation helpful? Give feedback.
All reactions