All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.presto.jdbc.internal.spi.statistics.SourceInfo Maven / Gradle / Ivy

The newest version!
/*
 * Licensed 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 com.facebook.presto.jdbc.internal.spi.statistics;

/**
 * Describes source of PlanStatistics.
 * We have different ways to estimate PlanStatistics like Cost based optimizer and History based optimizer.
 */
public abstract class SourceInfo
{
    public enum ConfidenceLevel
    {
        LOW(0),
        HIGH(1),
        FACT(2);

        private final int confidenceOrdinal;

        ConfidenceLevel(int confidenceOrdinal)
        {
            this.confidenceOrdinal = confidenceOrdinal;
        }

        public int getConfidenceOrdinal()
        {
            return confidenceOrdinal;
        }
    }

    public abstract ConfidenceLevel confidenceLevel();

    /**
     * Whether to estimate size of plan output using variable statistics.
     * If false, we will use estimated size in plan statistics itself.
     */
    public boolean estimateSizeUsingVariables()
    {
        return false;
    }

    public abstract String getSourceInfoName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy