niuge01 commented on a change in pull request #3620: [CARBONDATA-3700] Optimize 
pruning performance when prunning with multi…
URL: https://github.com/apache/carbondata/pull/3620#discussion_r387547012
 
 

 ##########
 File path: 
core/src/main/java/org/apache/carbondata/core/datastore/block/SegmentProperties.java
 ##########
 @@ -35,13 +38,24 @@
 import org.apache.carbondata.core.metadata.schema.table.column.ColumnSchema;
 import org.apache.carbondata.core.util.CarbonUtil;
 
+import org.apache.log4j.Logger;
+
 /**
  * This class contains all the details about the restructuring information of
  * the block. This will be used during query execution to handle restructure
  * information
  */
 public class SegmentProperties {
 
+  private static final Logger LOG =
+        LogServiceFactory.getLogService(SegmentProperties.class.getName());
+
+  private static final int dimensionsFingerPrinterShift = 1;
+
+  private static final int measuresFingerPrinterShift = 2;
+
+  private static final int complexFingerPrinterShift = 3;
 
 Review comment:
   ```suggestion
     private static final int COMPLEX_FINGER_PRINTER_SHIFT = 3;
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to