Github user ajantha-bhat commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2322#discussion_r189502471
--- Diff:
core/src/main/java/org/apache/carbondata/core/util/BlockletDataMapUtil.java ---
@@ -67,7 +76,22 @@
List<DataFileFooter> indexInfo = fileFooterConverter.getIndexInfo(
identifier.getIndexFilePath() +
CarbonCommonConstants.FILE_SEPARATOR + identifier
.getIndexFileName(),
indexFileStore.getFileData(identifier.getIndexFileName()));
+ CarbonTable carbonTable =
+
CarbonMetadata.getInstance().getCarbonTable(identifier.getTableUniqueName());
--- End diff --
@manishgupta88 : If your concern is that schema can be modified. I can make
this carbon table access only for NonTransactional tables as it is required
only for NonTransactional table and schema modify (IUD) is not supported for
NonTransactional table
---