Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/842#discussion_r116004196 --- Diff: core/src/main/java/org/apache/carbondata/core/scan/partition/PartitionUtil.java --- @@ -0,0 +1,108 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.carbondata.core.scan.partition; + +import java.math.BigDecimal; +import java.text.DateFormat; +import java.text.SimpleDateFormat; +import java.util.BitSet; + +import org.apache.carbondata.common.logging.LogService; +import org.apache.carbondata.common.logging.LogServiceFactory; +import org.apache.carbondata.core.constants.CarbonCommonConstants; +import org.apache.carbondata.core.metadata.datatype.DataType; +import org.apache.carbondata.core.metadata.schema.PartitionInfo; +import org.apache.carbondata.core.util.CarbonProperties; + +import org.apache.commons.lang.StringUtils; + +public class PartitionUtil { + + private static LogService LOGGER = LogServiceFactory.getLogService(PartitionUtil.class.getName()); + + private static final ThreadLocal<DateFormat> timestampFormatter = new ThreadLocal<DateFormat>() { + @Override protected DateFormat initialValue() { + return new SimpleDateFormat(CarbonProperties.getInstance() + .getProperty(CarbonCommonConstants.CARBON_TIMESTAMP_FORMAT, + CarbonCommonConstants.CARBON_TIMESTAMP_DEFAULT_FORMAT)); + } + }; + + private static final ThreadLocal<DateFormat> dateFormatter = new ThreadLocal<DateFormat>() { + @Override protected DateFormat initialValue() { + return new SimpleDateFormat(CarbonProperties.getInstance() + .getProperty(CarbonCommonConstants.CARBON_DATE_FORMAT, + CarbonCommonConstants.CARBON_DATE_DEFAULT_FORMAT)); + } + }; + + public static Partitioner getPartitioner(PartitionInfo partitionInfo) { + switch (partitionInfo.getPartitionType()) { + case HASH: + return new HashPartitioner(partitionInfo.getNumPartitions()); + case LIST: + return new ListPartitioner(partitionInfo); + case RANGE: + return new RangePartitioner(partitionInfo); + default: + return null; --- End diff -- should raise UnsupportOperationException --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at [hidden email] or file a JIRA ticket with INFRA. --- |
Free forum by Nabble | Edit this page |