Skip to content

Commit c393e18

Browse files
committed
fix rebase conflicts
1 parent e47c03a commit c393e18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ class SQLQuerySuite extends QueryTest with BeforeAndAfterAll {
8989
test("Add Parser of SQL COALESCE()") {
9090
checkAnswer(
9191
sql("""SELECT COALESCE(1, 2)"""),
92-
1)
92+
Row(1))
9393
checkAnswer(
9494
sql("SELECT COALESCE(null, 1, 1.5)"),
95-
1.toDouble)
95+
Row(1.toDouble))
9696
checkAnswer(
9797
sql("SELECT COALESCE(null, null, null)"),
98-
null)
98+
Row(null))
9999
}
100100

101101
test("SPARK-3176 Added Parser of SQL LAST()") {

0 commit comments

Comments
 (0)