alamb commented on issue #10808:
URL: https://github.com/apache/datafusion/issues/10808#issuecomment-2155283319
> Oh yeah, you are right, I don't know why I didn't think about that. I will
try it anyway, maybe I will come up with a different solution. Thanks Peter,
for letting me know!
In order to make it work, you might be able to implement a custom iterator
like
```rust
enum InputIterator<'a> {
SingleInput(&LogicalPlan),
VecInput(&[LogicalPlan])),
..
}
```
And then implement the `Iterator` trait appropriately
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]