HyukjinKwon commented on a change in pull request #32158:
URL: https://github.com/apache/spark/pull/32158#discussion_r612956141



##########
File path: sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
##########
@@ -64,7 +64,7 @@ class SQLQuerySuite extends QueryTest with SharedSparkSession 
with AdaptiveSpark
       val queryCoalesce = sql("select coalesce(null, 1, '1') from src ")
 
       checkAnswer(queryCaseWhen, Row("1.0") :: Nil)
-      checkAnswer(queryCoalesce, Row("1") :: Nil)
+      checkAnswer(queryCoalesce, Row("2") :: Nil)

Review comment:
       ```suggestion
   ```

##########
File path: sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
##########
@@ -64,7 +64,7 @@ class SQLQuerySuite extends QueryTest with SharedSparkSession 
with AdaptiveSpark
       val queryCoalesce = sql("select coalesce(null, 1, '1') from src ")
 
       checkAnswer(queryCaseWhen, Row("1.0") :: Nil)
-      checkAnswer(queryCoalesce, Row("1") :: Nil)
+      checkAnswer(queryCoalesce, Row("2") :: Nil)

Review comment:
       ```suggestion
         checkAnswer(queryCoalesce, Row("2") :: Nil)
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



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

Reply via email to