Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1999#discussion_r171772533
--- Diff:
core/src/main/java/org/apache/carbondata/core/util/path/CarbonTablePath.java ---
@@ -164,6 +164,14 @@ public static String getMetadataPath(String tablePath)
{
return tablePath + File.separator + METADATA_DIR;
}
+ /**
+ * Return table status file path based on `tablePath`
+ */
+ public static String getTableStatusFilePath(String tablePath) {
+ return getMetadataPath(tablePath) +
CarbonCommonConstants.FILE_SEPARATOR
+ + CarbonCommonConstants.LOADMETADATA_FILENAME;
--- End diff --
ok
---