Github user KanakaKumar commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1831#discussion_r165809183
--- Diff: core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java ---
@@ -1264,18 +1231,7 @@
/**
* default property of unsafe processing
*/
- public static final String ENABLE_UNSAFE_IN_QUERY_EXECUTION_DEFAULTVALUE = "false";
-
- /**
- * property for offheap based processing
- */
- @CarbonProperty
- public static final String USE_OFFHEAP_IN_QUERY_PROCSSING = "use.offheap.in.query.processing";
-
- /**
- * default value of offheap based processing
- */
- public static final String USE_OFFHEAP_IN_QUERY_PROCSSING_DEFAULT = "true";
+ public static final String ENABLE_UNSAFE_IN_QUERY_EXECUTION_DEFAULTVALUE = "true";
--- End diff --
Please make ENABLE_UNSAFE_COLUMN_PAGE_LOADING = "enable.unsafe.columnpage" also "true" by default as its the common configuration for query also.
---