wqc200 commented on a change in pull request #8033:
URL: https://github.com/apache/arrow/pull/8033#discussion_r478504215



##########
File path: rust/datafusion/src/logicalplan.rs
##########
@@ -713,6 +718,9 @@ impl fmt::Debug for Expr {
         match self {
             Expr::Alias(expr, alias) => write!(f, "{:?} AS {}", expr, alias),
             Expr::Column(name) => write!(f, "#{}", name),
+            Expr::ScalarVariable(variable_names) => {
+                write!(f, "#{}", variable_names.join("."))

Review comment:
       Yes, i remove the code '#', the variable name itself start with an @ sign




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to