Github user kumarvishal09 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2846#discussion_r228693240
--- Diff: core/src/main/java/org/apache/carbondata/core/util/ByteUtil.java
---
@@ -733,4 +733,12 @@ public static double toXorDouble(byte[] value, int
offset, int length) {
public static float toXorFloat(byte[] value, int offset, int length) {
return Float.intBitsToFloat(toXorInt(value, offset, length));
}
+
+ public static int[] toIntArray(byte[] data, int size) {
--- End diff --
updated method name
---