Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix scala style
  • Loading branch information
kiszk committed Jul 27, 2018
commit c68a75f69c6e1507539176d44c9e17b1034ad15b
Original file line number Diff line number Diff line change
Expand Up @@ -1640,7 +1640,7 @@ class DataFrameFunctionsSuite extends QueryTest with SharedSQLContext {
val df10 = Seq(
(Array[Integer](1, 2), Array[Integer](2)),
(Array[Integer](1, 2), Array[Integer](1, null)),
(Array[Integer](1, null, 3) , Array[Integer](1, 2)),
(Array[Integer](1, null, 3), Array[Integer](1, 2)),
(Array[Integer](1, null), Array[Integer](2, null))
).toDF("a", "b")
val result10 = df10.select(array_except($"a", $"b"))
Expand Down