Skip to content

Commit

Permalink
Modified format and test case
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-sjayabalan committed Aug 20, 2024
1 parent 741b75c commit 592064c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ trait FunctionSuite extends TestData {
checkAnswer(data.select(reverse(col("a"))), Seq(Row("tac")), sort = false)
}

test("NaN and Null") {
test("isnull") {
checkAnswer(
nanData1.select(equal_nan(col("A")), isnull(col("A"))),
Seq(Row(false, false), Row(true, false), Row(null, true), Row(false, false)),
Expand Down

0 comments on commit 592064c

Please sign in to comment.