-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Consolidate Example: simplify_udaf_expression.rs into advanced_udaf.rs #13842
Comments
take |
Thank you @takaebato 🙏 |
Sorry for the delay🙏 But I have a quick question! Currently, it doesn’t seem possible to skip simplification, as it always returns a simplified |
The rationale for returning ExprSimplifyResult is so that the argument doesn't have to be cloned -- aka to avoid coping the ownership of argument is passed to the function and there needs to be some way to get the original structuer back |
Thank you so much for the explanation!! |
Is your feature request related to a problem or challenge?
The large number of small examples in DataFusion leads to multiple problems:
cargo t
time (each binary must be linked / created)Thus I think the fewer examples we have the
Describe the solution you'd like
Then update the readme page:
Describe alternatives you've considered
No response
Additional context
I think this is a good first issue as the task is straightforward and doesn't require deep understanding of the DataFusion codebase
The text was updated successfully, but these errors were encountered: