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

    https://github.com/apache/spark/pull/19873#discussion_r154863033
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala
 ---
    @@ -1073,11 +1076,13 @@ class Analyzer(
        * The HAVING clause could also used a grouping columns that is not 
presented in the SELECT.
        */
       object ResolveMissingReferences extends Rule[LogicalPlan] {
    -    def apply(plan: LogicalPlan): LogicalPlan = plan.resolveOperators {
    +    def apply(plan: LogicalPlan): LogicalPlan = plan.transformUp {
           // Skip sort with aggregate. This will be handled in 
ResolveAggregateFunctions
    +      case sa @ Sort(_, _, AnalysisBarrier(child: Aggregate)) => sa
           case sa @ Sort(_, _, child: Aggregate) => sa
     
    -      case s @ Sort(order, _, child) if !s.resolved && child.resolved =>
    +      case s @ Sort(order, _, oriChild) if !s.resolved && 
oriChild.resolved =>
    --- End diff --
    
    Ok.


---

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

Reply via email to