Github user sounakr commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2209#discussion_r184992863
--- Diff:
processing/src/main/java/org/apache/carbondata/processing/store/TablePage.java
---
@@ -222,8 +222,9 @@ private void addComplexColumn(int index, int rowId,
byte[] complexColumns) {
ByteBuffer byteArrayInput = ByteBuffer.wrap(complexColumns);
ByteArrayOutputStream byteArrayOutput = new ByteArrayOutputStream();
DataOutputStream dataOutputStream = new
DataOutputStream(byteArrayOutput);
- complexDataType.parseAndBitPack(byteArrayInput, dataOutputStream,
- model.getComplexDimensionKeyGenerator());
+ int startOffset = 0;
--- End diff --
Removed
---