Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1984#discussion_r169520945
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/page/SafeDecimalColumnPage.java
---
@@ -217,6 +217,6 @@ public void convertValue(ColumnPageValueConverter
codec) {
@Override
public void freeMemory() {
-
+ byteArrayData = null;
--- End diff --
other types like intData, longData can also be used, so please set the
references to null for all the types here
---