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

    https://github.com/apache/spark/pull/9994#discussion_r46014608
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/DataFrameAggregateSuite.scala ---
    @@ -261,6 +261,9 @@ class DataFrameAggregateSuite extends QueryTest with 
SharedSQLContext {
         checkAnswer(
           testData2.agg(stddev('a), stddev_pop('a), stddev_samp('a)),
           Row(testData2ADev, math.sqrt(4 / 6.0), testData2ADev))
    +    checkAnswer(
    +      testData2.agg(stddev("a"), stddev_pop("a"), stddev_samp("a")),
    --- End diff --
    
    you can technically just include this in the previous checkanswer.


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to