Dandandan commented on a change in pull request #971:
URL: https://github.com/apache/arrow-datafusion/pull/971#discussion_r710238878
##########
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:
I would be ok with this as intermediate solution. Ideally we'll move the
formatting to `Display` instead and use that for printing @alamb wdyt?
--
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]