This is an automated email from the ASF dual-hosted git repository. wenchen pushed a commit to branch branch-2.4 in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-2.4 by this push: new 866f763 fix compilation 866f763 is described below commit 866f76304f6d25c421dfb6a4356c38761d0b2ae1 Author: Wenchen Fan <wenc...@databricks.com> AuthorDate: Mon Sep 23 22:51:44 2019 +0800 fix compilation --- .../test/scala/org/apache/spark/scheduler/TaskResultGetterSuite.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/scala/org/apache/spark/scheduler/TaskResultGetterSuite.scala b/core/src/test/scala/org/apache/spark/scheduler/TaskResultGetterSuite.scala index 9aa9986..e32d380 100644 --- a/core/src/test/scala/org/apache/spark/scheduler/TaskResultGetterSuite.scala +++ b/core/src/test/scala/org/apache/spark/scheduler/TaskResultGetterSuite.scala @@ -152,7 +152,7 @@ class TaskResultGetterSuite extends SparkFunSuite with BeforeAndAfter with Local override def canFetchMoreResults(size: Long): Boolean = false } val indirectTaskResult = IndirectTaskResult(TaskResultBlockId(0), 0) - val directTaskResult = new DirectTaskResult(ByteBuffer.allocate(0), Nil, Array()) + val directTaskResult = new DirectTaskResult(ByteBuffer.allocate(0), Nil) val ser = sc.env.closureSerializer.newInstance() val serializedIndirect = ser.serialize(indirectTaskResult) val serializedDirect = ser.serialize(directTaskResult) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org