Github user jackylk commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2126#discussion_r178482124
  
    --- Diff: 
integration/presto/src/main/java/org/apache/carbondata/presto/impl/CarbonTableReader.java
 ---
    @@ -372,6 +372,11 @@ public TBase create() {
           
CarbonProperties.getInstance().addProperty(CarbonCommonConstants.UNSAFE_WORKING_MEMORY_IN_MB,
               config.getUnsafeMemoryInMb());
         }
    +    if(config.getEnableUnsafeInQueryExecution() != null) {
    +      CarbonProperties.getInstance()
    --- End diff --
    
    change the style to like
    ```
     CarbonProperties.getInstance().addProperty(
                 CarbonCommonConstants.ENABLE_UNSAFE_IN_QUERY_EXECUTION,
                 config.getEnableUnsafeInQueryExecution());
    ```


---

Reply via email to