Skip to content
Snippets Groups Projects
Commit 3bc7055e authored by Reynold Xin's avatar Reynold Xin
Browse files

Fixed a test failure.

parent 84da8792
No related branches found
No related tags found
No related merge requests found
...@@ -203,7 +203,7 @@ class DateFunctionsSuite extends QueryTest { ...@@ -203,7 +203,7 @@ class DateFunctionsSuite extends QueryTest {
Seq(Row(Date.valueOf("2015-07-27")), Row(Date.valueOf("2015-07-27")))) Seq(Row(Date.valueOf("2015-07-27")), Row(Date.valueOf("2015-07-27"))))
checkAnswer( checkAnswer(
df2.select(next_day(col("t"), "th")), df2.select(next_day(col("t"), "th")),
Seq(Row(Date.valueOf("2015-07-30")), Row(null))) Seq(Row(Date.valueOf("2015-07-30")), Row(Date.valueOf("2015-07-30"))))
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment