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

    https://github.com/apache/spark/pull/23043#discussion_r234847102
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/DataFrameAggregateSuite.scala ---
    @@ -723,4 +723,32 @@ class DataFrameAggregateSuite extends QueryTest with 
SharedSQLContext {
           "grouping expressions: [current_date(None)], value: [key: int, 
value: string], " +
             "type: GroupBy]"))
       }
    +
    +  test("SPARK-26021: Double and Float 0.0/-0.0 should be equal when 
grouping") {
    +    val colName = "i"
    +    def groupByCollect(df: DataFrame): Array[Row] = {
    +      df.groupBy(colName).count().collect()
    +    }
    +    def assertResult[T](result: Array[Row], zero: T)(implicit ordering: 
Ordering[T]): Unit = {
    +      assert(result.length == 1)
    +      // using compare since 0.0 == -0.0 is true
    +      assert(ordering.compare(result(0).getAs[T](0), zero) == 0)
    --- End diff --
    
    ah sorry I misread the code. 


---

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

Reply via email to