Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2863#discussion_r230625480
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/page/ColumnPageValueConverter.java
---
@@ -37,5 +40,6 @@
double decodeDouble(long value);
double decodeDouble(float value);
double decodeDouble(double value);
- void decodeAndFillVector(ColumnPage columnPage, ColumnVectorInfo
vectorInfo);
+ void decodeAndFillVector(byte[] pageData, ColumnVectorInfo vectorInfo,
BitSet nullBits,
+ DataType pageDataType, int pageSize);
--- End diff --
It's not feasible now as the codec metadata like max, factor is required
to decode the data and that is present in codecs only.
---