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 2017/12/22 14:52:41 UTC

[GitHub] carbondata pull request #1719: [WIP] [CARBONDATA-1731,CARBONDATA-1728] Updat...

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

    https://github.com/apache/carbondata/pull/1719#discussion_r158504977
  
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/block/TableBlockInfo.java ---
    @@ -113,10 +120,29 @@ public TableBlockInfo() {
       public TableBlockInfo(String filePath, long blockOffset, String segmentId, String[] locations,
           long blockLength, BlockletInfos blockletInfos, ColumnarFormatVersion version,
           String[] deletedDeltaFilePath) {
    -    this(filePath, blockOffset, segmentId, locations, blockLength, version, deletedDeltaFilePath);
    +    this(filePath, blockOffset, segmentId, locations, blockLength, version,
    +        deletedDeltaFilePath);
         this.blockletInfos = blockletInfos;
       }
     
    +  /**
    +   * constructor to initialize the TbaleBlockInfo with blockletIds
    +   *
    +   * @param filePath
    +   * @param blockOffset
    +   * @param segmentId
    +   * @param locations
    +   * @param blockLength
    +   * @param blockletInfos
    +   */
    +  public TableBlockInfo(String filePath, String blockletIds, long blockOffset, String segmentId,
    --- End diff --
    
    typo blockletId


---