Bump up versions in packaging modules and remove commons-lang3 dep
This commit is contained in:
committed by
vinoth chandar
parent
eca49a255e
commit
18a39715c9
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user