alamb opened a new issue, #2816:
URL: https://github.com/apache/arrow-datafusion/issues/2816
**Is your feature request related to a problem or challenge? Please describe
what you are trying to do.**
All of the `LogicalPlan` structs contain `Arc<LogicalPlan>` where they refer
to other plans, *except* `Union`, which has a `Vec<LogicalPlan>`. I think this
caused a couple of extra `LogicalPlan` clones due to needing an owned
`LogicalPlan` to put into a union.
**Describe the solution you'd like**
`Union` should contain `Vec<Arc<LogicalPlan>>` instead
**Describe alternatives you've considered**
Do nothing
**Additional context**
raised by by @andygrove and @mrob95 on
https://github.com/apache/arrow-datafusion/pull/2792#event-6897639570
--
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]