tustvold opened a new issue, #4621: URL: https://github.com/apache/arrow-datafusion/issues/4621
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** Currently all of the various methods on `DataFrame` take `&self`, and a number of methods return `Arc<DataFrame>`. This results in a non-trivial amount of unnecessary clones, in particular of `LogicalPlan` which is not especially cheap. **Describe the solution you'd like** I would like methods to return `DataFrame` instead of `Arc<DataFrame>` and for the member functions on `DataFrame` to capture `self` **Describe alternatives you've considered** **Additional context** Add any other context or screenshots about the feature request here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
