VenuReddy2103 commented on a change in pull request #4110:
URL: https://github.com/apache/carbondata/pull/4110#discussion_r608636650
##########
File path:
core/src/main/java/org/apache/carbondata/core/index/IndexStoreManager.java
##########
@@ -95,13 +94,10 @@ private IndexStoreManager() {
.getIndexesMap().entrySet()) {
for (Map.Entry<String, Map<String, String>> indexEntry :
providerEntry.getValue()
.entrySet()) {
- if (!indexEntry.getValue().get(CarbonCommonConstants.INDEX_PROVIDER)
- .equalsIgnoreCase(IndexType.SI.getIndexProviderName())) {
- IndexSchema indexSchema = new IndexSchema(indexEntry.getKey(),
- indexEntry.getValue().get(CarbonCommonConstants.INDEX_PROVIDER));
- indexSchema.setProperties(indexEntry.getValue());
- indexes.add(getIndex(carbonTable, indexSchema));
- }
+ IndexSchema indexSchema = new IndexSchema(indexEntry.getKey(),
Review comment:
Not here. Only in the query process. we pass it to IndexChooser
constructor.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]