1
0

Bump up versions in packaging modules and remove commons-lang3 dep

This commit is contained in:
Balaji Varadarajan
2018-09-07 18:30:49 -07:00
committed by vinoth chandar
parent eca49a255e
commit 18a39715c9
5 changed files with 6 additions and 22 deletions

View File

@@ -124,14 +124,7 @@ class DataSourceTest extends AssertionsForJUnit {
assertTrue(HoodieDataSourceHelpers.hasNewCommits(fs, basePath, "000"))
// Read RO View
try {
val hoodieROViewDF1 = spark.read.format("com.uber.hoodie")
.load(basePath + "/*/*/*/*")
fail("we should error out, since no compaction has yet occurred.")
} catch {
case e: AnalysisException => {
// do nothing
}
};
val hoodieROViewDF1 = spark.read.format("com.uber.hoodie").load(basePath + "/*/*/*/*")
assertEquals(100, hoodieROViewDF1.count()) // still 100, since we only updated
}
}