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

    https://github.com/apache/spark/pull/21857#discussion_r204886904
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/Dataset.scala ---
    @@ -1919,6 +1919,21 @@ class Dataset[T] private[sql](
         Except(planWithBarrier, other.planWithBarrier)
       }
     
    +  /**
    +   * Returns a new Dataset containing rows in this Dataset but not in 
another Dataset while
    +   * preserving the duplicates.
    +   * This is equivalent to `EXCEPT ALL` in SQL.
    +   *
    +   * @note Equality checking is performed directly on the encoded 
representation of the data
    +   * and thus is not affected by a custom `equals` function defined on `T`.
    +   *
    +   * @group typedrel
    +   * @since 2.4.0
    --- End diff --
    
    We are still targeting it to 2.4. If we are unable to make it, we can 
change it. 


---

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

Reply via email to