matthewmturner commented on a change in pull request #971:
URL: https://github.com/apache/arrow-datafusion/pull/971#discussion_r710215374
##########
File path: datafusion/src/logical_plan/expr.rs
##########
@@ -1598,7 +1611,7 @@ impl fmt::Debug for Expr {
Expr::IsNull(expr) => write!(f, "{:?} IS NULL", expr),
Expr::IsNotNull(expr) => write!(f, "{:?} IS NOT NULL", expr),
Expr::BinaryExpr { left, op, right } => {
- write!(f, "{:?} {:?} {:?}", left, op, right)
+ write!(f, "{:?} {} {:?}", left, op, right)
Review comment:
@Dandandan FYI i updated here to use display and i think thats what made
it work. i was able to get the expected results on some tests after this as
well.
Are you ok with this approach?
--
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]