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_r387546514
##########
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;
Review comment:
```suggestion
private static final int DIMENSIONS_FINGER_PRINTER_SHIFT = 1;
```
----------------------------------------------------------------
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