-
Notifications
You must be signed in to change notification settings - Fork 1.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
Remove deprecated datafusion_physical_expr::functions module #12505
Remove deprecated datafusion_physical_expr::functions module #12505
Conversation
Nice -- this was likely left over from when we ported functions. Very cool |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great find -- thank you @findepi
I thought this was reserved for backward compatible, but I'm ok to remove it. |
I think the idea is that the only |
Thanks @findepi @jayzhan211 and @lewiszlw |
`make_scalar_function` has been deprecated since v36 [0]. It is being removed from the public api in v43 [1]. [0]: apache/datafusion#8878 [1]: apache/datafusion#12505
* fix: remove use of deprecated `make_scalar_function` `make_scalar_function` has been deprecated since v36 [0]. It is being removed from the public api in v43 [1]. [0]: apache/datafusion#8878 [1]: apache/datafusion#12505 * remove use of `.unwrap()` from pyarrow_function_to_rust
Cleanup.