Ted-Jiang opened a new issue, #3878:
URL: https://github.com/apache/arrow-datafusion/issues/3878
We need improve the `Expr` fmt: like
```
let expr1 = and(a_1.clone(), b_2.clone())
.and(a_2.clone())
.and(b_1.clone());
let expr2 = and(and(a_1.clone(), b_2.clone()), and(a_2.clone(),
b_1.clone()));
assert_eq!(expr1, expr2);
```
This is not equal but they have the same string format:
```
a = Int64(1) AND b = Int64(2) AND a = Int64(2) AND b = Int64(1)
```
_Originally posted by @Ted-Jiang in
https://github.com/apache/arrow-datafusion/pull/3859#discussion_r998268672_
--
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]