Github user kumarvishal09 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2529#discussion_r203783265
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/page/SafeFixLengthColumnPage.java
---
@@ -431,6 +439,15 @@ private void ensureArraySize(int requestSize, DataType
dataType) {
System.arraycopy(doubleData, 0, newArray, 0, arrayElementCount);
doubleData = newArray;
}
+ } else if (dataType == DataTypes.BYTE_ARRAY) {
--- End diff --
Fixed---
