Github user kumarvishal09 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2252#discussion_r189913075
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/chunk/reader/dimension/v2/CompressedDimensionChunkFileBasedReaderV2.java
---
@@ -121,6 +121,7 @@ public DimensionColumnPage decodeColumnPage(
int[] invertedIndexesReverse = new int[0];
int[] rlePage = null;
DataChunk2 dimensionColumnChunk = null;
+ boolean isLongStringColumn =
dimensionRawColumnChunk.isLongStringColumn();
--- End diff --
In V2 case it will be always false...as new encoder type will be only
supported for V3 format
---