Github user marmbrus commented on a diff in the pull request:

    https://github.com/apache/spark/pull/10577#discussion_r48820132
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/Optimizer.scala
 ---
    @@ -595,6 +598,22 @@ object BooleanSimplification extends Rule[LogicalPlan] 
with PredicateHelper {
     }
     
     /**
    + * Combines all adjacent [[Union]] and [[Unions]] operators into a single 
[[Unions]].
    + */
    +object CombineUnions extends Rule[LogicalPlan] {
    +  private def collectUnionChildren(plan: LogicalPlan): Seq[LogicalPlan] = 
plan match {
    +    case Union(l, r) => collectUnionChildren(l) ++ collectUnionChildren(r)
    --- End diff --
    
    Another option would just be to do this at construction time, that way we 
can avoid paying the cost in the analyzer.  This would still limit the cases we 
could cache (i.e. we'd miss cached data unioned with other data), but that 
doesn't seem like a huge deal.
    
    I'd leave this rule here either way.


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