Github user kumarvishal09 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2529#discussion_r203783172
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/page/UnsafeFixLengthColumnPage.java
---
@@ -201,12 +201,18 @@ public void putDouble(int rowId, double value) {
@Override
public void putBytes(int rowId, byte[] bytes) {
+ try {
+ ensureMemory(eachRowSize);
+ } catch (MemoryException e) {
--- End diff --
ok Will handle this in different PR---
