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

    https://github.com/apache/carbondata/pull/2499#discussion_r202253245
  
    --- Diff: 
core/src/main/java/org/apache/carbondata/core/indexstore/TableBlockIndexUniqueIdentifierWrapper.java
 ---
    @@ -35,18 +35,34 @@
     
       // holds the reference to CarbonTable
       private CarbonTable carbonTable;
    +  /**
    +   * flag to specify whether to load table block metadata in unsafe or 
safe. Default value is true
    +   */
    +  private boolean addTableBlockToUnsafe = true;
     
       public TableBlockIndexUniqueIdentifierWrapper(
           TableBlockIndexUniqueIdentifier tableBlockIndexUniqueIdentifier, 
CarbonTable carbonTable) {
         this.tableBlockIndexUniqueIdentifier = tableBlockIndexUniqueIdentifier;
         this.carbonTable = carbonTable;
       }
     
    +  public TableBlockIndexUniqueIdentifierWrapper(
    --- End diff --
    
    What is the use of this constructor when no body uses it?


---

Reply via email to