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

    https://github.com/apache/spark/pull/21857#discussion_r205357936
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/Optimizer.scala
 ---
    @@ -1275,6 +1276,64 @@ object ReplaceExceptWithAntiJoin extends 
Rule[LogicalPlan] {
       }
     }
     
    +/**
    + * Replaces logical [[ExceptAll]] operator using a combination of Union, 
Aggregate
    + * and Generate operator.
    + *
    + * Input Query :
    + * {{{
    + *    SELECT c1 FROM ut1 EXCEPT ALL SELECT c1 FROM ut2
    + * }}}
    + *
    + * Rewritten Query:
    + * {{{
    + *   SELECT c1
    + *   FROM (
    + *     SELECT replicate_rows(sum_val, c1) AS (sum_val, c1)
    + *       FROM (
    + *         SELECT c1, cnt, sum_val
    --- End diff --
    
    We can remove it from the pr description as well.


---

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

Reply via email to