Github user sounakr commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1751#discussion_r161431169
--- Diff:
core/src/main/java/org/apache/carbondata/core/indexstore/blockletindex/BlockletDataMap.java
---
@@ -728,9 +746,9 @@ private DataMapRow convertToRow(IndexKey key) {
private List<String> getPartitions() {
DataMapRow unsafeRow = unsafeMemorySummaryDMStore.getUnsafeRow(0);
- if (unsafeRow.getColumnCount() > 2) {
+ if (unsafeRow.getColumnCount() > 3) {
List<String> partitions = new ArrayList<>();
- DataMapRow row = unsafeRow.getRow(2);
+ DataMapRow row = unsafeRow.getRow(3);
--- End diff --
Done
---