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
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ class ClientE2ETestSuite extends RemoteSparkSession {
assert(result(2) == 2)
}

test("simple udf") {
// TODO (SPARK-42665): Ignore this test until the udf is fully implemented.
ignore("simple udf") {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: I think the common way to do so is this format:

ignore("SPARK-31855: generate test files for checking compatibility with Spark 2.4/3.2").

Basically you leave the SPARK-XXXX and the reason in the test name.

def dummyUdf(x: Int): Int = x + 5
val myUdf = udf(dummyUdf _)
val df = spark.range(5).select(myUdf(Column("id")))
Expand Down