Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/12850#discussion_r65484414
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/Optimizer.scala
 ---
    @@ -738,6 +739,42 @@ object InferFiltersFromConstraints extends 
Rule[LogicalPlan] with PredicateHelpe
     }
     
     /**
    + * Reorder associative integral-type operators and fold all constants into 
one.
    + */
    +object ReorderAssociativeOperator extends Rule[LogicalPlan] {
    +  private def flattenAdd(e: Expression): Seq[Expression] = e match {
    +    case Add(l, r) => flattenAdd(l) ++ flattenAdd(r)
    +    case other => other :: Nil
    +  }
    +
    +  private def flattenMultiply(e: Expression): Seq[Expression] = e match {
    +    case Multiply(l, r) => flattenMultiply(l) ++ flattenMultiply(r)
    +    case other => other :: Nil
    +  }
    +
    +  def apply(plan: LogicalPlan): LogicalPlan = plan 
transformExpressionsDown {
    --- End diff --
    
    we should do:
    ```
    plan transform {
        case q: LogicalPlan => q transformExpressionsDown {
          ......
        }
    }
    ```
    or here we just optimize the top level plan.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to