Repository: spark
Updated Branches:
  refs/heads/master f4f6bd8c9 -> a16619683


[SPARK-17569][SPARK-17569][TEST] Make the unit test added for work again

## What changes were proposed in this pull request?

A 
[PR](https://github.com/apache/spark/commit/a6aade0042d9c065669f46d2dac40ec6ce361e63)
 was merged concurrently that made the unit test for PR #15122 not test 
anything anymore. This PR fixes the test.

## How was this patch tested?

Changed line 
https://github.com/apache/spark/blob/0d634875026ccf1eaf984996e9460d7673561f80/sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/FileStreamSource.scala#L137
from `false` to `true` and made sure the unit test failed.

Author: Burak Yavuz <brk...@gmail.com>

Closes #15203 from brkyvz/fix-test.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a1661968
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a1661968
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a1661968

Branch: refs/heads/master
Commit: a1661968310de35e710e3b6784f63a77c44453fc
Parents: f4f6bd8
Author: Burak Yavuz <brk...@gmail.com>
Authored: Thu Sep 22 16:50:22 2016 -0700
Committer: Shixiong Zhu <shixi...@databricks.com>
Committed: Thu Sep 22 16:50:22 2016 -0700

----------------------------------------------------------------------
 .../spark/sql/execution/streaming/FileStreamSourceSuite.scala      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/a1661968/sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/FileStreamSourceSuite.scala
----------------------------------------------------------------------
diff --git 
a/sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/FileStreamSourceSuite.scala
 
b/sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/FileStreamSourceSuite.scala
index e8fa6a5..0795a05 100644
--- 
a/sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/FileStreamSourceSuite.scala
+++ 
b/sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/FileStreamSourceSuite.scala
@@ -92,7 +92,7 @@ class FileStreamSourceSuite extends SparkFunSuite with 
SharedSQLContext {
       val dir = new File(temp, "dir") // use non-existent directory to test 
whether log make the dir
       val metadataLog =
         new FileStreamSourceLog(FileStreamSourceLog.VERSION, spark, 
dir.getAbsolutePath)
-      assert(metadataLog.add(0, Array(FileEntry(s"$scheme:///file1", 100L))))
+      assert(metadataLog.add(0, Array(FileEntry(s"$scheme:///file1", 100L, 
0))))
 
       val newSource = new FileStreamSource(spark, s"$scheme:///", "parquet", 
StructType(Nil),
         dir.getAbsolutePath, Map.empty)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to