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

[GitHub] carbondata pull request #1748: [CARBONDATA-1967][PARTITION] Fix autocompacti...

Github user jackylk commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/1748#discussion_r159367019
  
    --- Diff: core/src/main/java/org/apache/carbondata/core/util/path/CarbonTablePath.java ---
    @@ -110,6 +110,20 @@ public static boolean isCarbonDataFile(String fileNameWithPath) {
         return false;
       }
     
    +  /**
    +   * check if it is carbon partitionmap file matching extension
    --- End diff --
    
    change to 
    > Return true if the `fileNameWithPath` ends with partition map file extension name
    
    remove @param and @return


---