alamb edited a comment on issue #1228:
URL:
https://github.com/apache/arrow-datafusion/issues/1228#issuecomment-960634583
I like @houqp's idea of marking adding`PartialOrd` and `PartialEq` to traits
to allow `LogicalPlan` to derive them as well
Perhaps something like
```rust
trait ExtensionNode: PartialOrd, PartialEq {
..
}
```
(and similarly for any other trait objects in `LogicalPlan`)
And then
```rust
#[derive(PartialOrd, PartialEq)]
enum LogicalPlan {
...
}
```
--
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]