1
0

Use CompletedFileSystemView instead of CompactedView considering deltacommits

This commit is contained in:
Nishith Agarwal
2017-07-25 17:25:41 -07:00
committed by vinoth chandar
parent 45dd8980c3
commit 5ee4ac40ae
2 changed files with 4 additions and 4 deletions

View File

@@ -127,12 +127,12 @@ public abstract class HoodieTable<T extends HoodieRecordPayload> implements Seri
}
/**
* Get the view of the file system for this table
* Get the completed (commit + compaction) view of the file system for this table
*
* @return
*/
public TableFileSystemView getCompactedFileSystemView() {
return new HoodieTableFileSystemView(metaClient, getCompletedCompactionCommitTimeline());
public TableFileSystemView getCompletedFileSystemView() {
return new HoodieTableFileSystemView(metaClient, getCommitTimeline());
}
/**