Skip to content

Commit

Permalink
[SPARK-42665][CONNECT][TEST] Mute Scala Client UDF test
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?
Mute the UDF test.

### Why are the changes needed?
The test fails during maven test runs because the server cannot find the udf in the classpath. The test will be fixed once the udf artifact sync is finished.

### Does this PR introduce _any_ user-facing change?
No.

### How was this patch tested?
N/A

Closes apache#40304 from zhenlineo/mute-udf-test.

Authored-by: Zhen Li <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
  • Loading branch information
zhenlineo authored and HyukjinKwon committed Mar 7, 2023
1 parent 8e3b9d4 commit cf3c34b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class ClientE2ETestSuite extends RemoteSparkSession with SQLHelper {
assert(result(2) == 2)
}

test("simple udf") {
ignore("SPARK-42665: Ignore simple udf test until the udf is fully implemented.") {
def dummyUdf(x: Int): Int = x + 5
val myUdf = udf(dummyUdf _)
val df = spark.range(5).select(myUdf(Column("id")))
Expand Down

0 comments on commit cf3c34b

Please sign in to comment.