Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
edmondop committed Apr 25, 2024
1 parent f259ae3 commit 0356dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/expr/src/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1404,7 +1404,7 @@ impl fmt::Display for Expr {
Expr::Column(c) => write!(f, "{c}"),
Expr::Columns(c) => {
Ok(c.iter().try_for_each(|column| write!(f, "{},", column))?)
},
}
Expr::OuterReferenceColumn(_, c) => write!(f, "outer_ref({c})"),
Expr::ScalarVariable(_, var_names) => write!(f, "{}", var_names.join(".")),
Expr::Literal(v) => write!(f, "{v:?}"),
Expand Down

0 comments on commit 0356dd1

Please sign in to comment.