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

    https://github.com/apache/spark/pull/19083#discussion_r142020451
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/DataFrameAggregateSuite.scala ---
    @@ -416,25 +416,31 @@ class DataFrameAggregateSuite extends QueryTest with 
SharedSQLContext {
       }
     
       test("zero moments") {
    -    val input = Seq((1, 2)).toDF("a", "b")
    -    checkAnswer(
    -      input.agg(stddev('a), stddev_samp('a), stddev_pop('a), variance('a),
    -        var_samp('a), var_pop('a), skewness('a), kurtosis('a)),
    -      Row(Double.NaN, Double.NaN, 0.0, Double.NaN, Double.NaN, 0.0,
    -        Double.NaN, Double.NaN))
    +    // In SPARK-21871, we added code to check the actual bytecode size of 
gen'd methods. If the size
    +    // goes over `hugeMethodLimit`, Spark fails to compile the methods and 
the execution also fails
    +    // in a test mode. So, we explicitly turn off whole-stage codegen here.
    +    // This guard can be removed if this issue fixed.
    +    withSQLConf(SQLConf.WHOLESTAGE_CODEGEN_ENABLED.key -> "false") {
    --- End diff --
    
    The same here.


---

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

Reply via email to