Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2499#discussion_r202278145
--- 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 --
As discussed I have added a Note
---