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
I have searched the EvaDB issues and found no similar feature requests.
Description
Currently, we are unable to send named arguments while calling a function, unlike in python:
SELECT HomeSaleForecast(SUGGESTION=TRUE);
doesn't work. It leads to this error:
File "$HOME/evadb/evadb/binder/statement_binder_context.py", line 161, in raise_error
raise BinderError(err_msg)
evadb.binder.binder_utils.BinderError: Cannot find column suggestion. There are no feasible columns.
However,
SELECT HomeSaleForecast(TRUE);
works
Use case
Like in python, we might want users to be able to access certain features while specifically calling a function.
Are you willing to submit a PR?
Yes I'd like to help by submitting a PR!
The text was updated successfully, but these errors were encountered:
americast
changed the title
Passing argument
Passing argument while calling a UDF
Oct 27, 2023
Search before asking
Description
Currently, we are unable to send named arguments while calling a function, unlike in
python
:doesn't work. It leads to this error:
However,
SELECT HomeSaleForecast(TRUE);
works
Use case
Like in
python
, we might want users to be able to access certain features while specifically calling a function.Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: