We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ScalarUDFImpl::invoke
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
in #13001 @agscpp added a general function ScalarUDFImpl::invoke_batche that handles inputs with 0 and more than 0 arguments.
ScalarUDFImpl::invoke_batche
Previously, there were two separate functions to handle these cases:
I would like to mark invoke and invoke_no_args deprecated
invoke
invoke_no_args
invoke_batch
datafusion/datafusion/expr/src/expr.rs
Line 1125 in c22abb4
ScalarUDFImpl
invoke_udf
I think this is pretty well specified and largely mechanical so it would be a good first issue
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
Sorry for duplicating this in #13238. It's already in progress, so let's maybe close this one?
ScalarUDFImpl::invoke_with_args
notfilippo
No branches or pull requests
Is your feature request related to a problem or challenge?
in #13001 @agscpp added a general function
ScalarUDFImpl::invoke_batche
that handles inputs with 0 and more than 0 arguments.Previously, there were two separate functions to handle these cases:
Describe the solution you'd like
I would like to mark
invoke
andinvoke_no_args
deprecatedDescribe alternatives you've considered
invoke_batch
instead. for exampledatafusion/datafusion/expr/src/expr.rs
Line 1125 in c22abb4
invoke_batch
is the main API and the documentation reflects thatScalarUDFImpl
s use invoke_batch rather thaninvoke
andinvoke_udf
Additional context
I think this is pretty well specified and largely mechanical so it would be a good first issue
The text was updated successfully, but these errors were encountered: