You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by ravipesala <gi...@git.apache.org> on 2018/03/02 06:29:17 UTC

[GitHub] carbondata pull request #1999: [CARBONDATA-2204] Optimized number of reads o...

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


---