org.apache.hadoop.hive.ql.optimizer.calcite.HiveRelDistribution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-apache Show documentation
Show all versions of hive-apache Show documentation
Shaded version of Apache Hive for Presto
The newest version!
/*
* 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.hadoop.hive.ql.optimizer.calcite;
import java.util.List;
import org.apache.calcite.plan.RelMultipleTrait;
import org.apache.calcite.plan.RelOptPlanner;
import org.apache.calcite.plan.RelTrait;
import org.apache.calcite.plan.RelTraitDef;
import org.apache.calcite.rel.RelDistribution;
import org.apache.calcite.rel.RelDistributionTraitDef;
import org.apache.calcite.util.mapping.Mappings.TargetMapping;
import io.prestosql.hive.$internal.com.google.common.collect.Ordering;
public class HiveRelDistribution implements RelDistribution {
private static final Ordering> ORDERING =
Ordering.natural().lexicographical();
List keys;
RelDistribution.Type type;
public HiveRelDistribution(Type type, List keys) {
this.type = type;
this.keys = keys;
}
@Override
public RelTraitDef> getTraitDef() {
return RelDistributionTraitDef.INSTANCE;
}
@Override
public void register(RelOptPlanner planner) {
}
@Override
public boolean satisfies(RelTrait trait) {
if (trait == this) {
return true;
}
switch (((RelDistribution)trait).getType()) {
case HASH_DISTRIBUTED :
return this.getKeys().equals(((RelDistribution)trait).getKeys());
default:
throw new RuntimeException("Other distributions are not used yet.");
}
}
@Override
public RelDistribution apply(TargetMapping mapping) {
if (keys.isEmpty()) {
return this;
}
return new HiveRelDistribution(type, keys);
}
@Override
public List getKeys() {
return keys;
}
@Override
public Type getType() {
return type;
}
@Override
public boolean isTop() {
return type == Type.ANY;
}
@Override
public int compareTo(RelMultipleTrait o) {
final RelDistribution distribution = (RelDistribution) o;
if (type == distribution.getType()
&& (type == Type.HASH_DISTRIBUTED
|| type == Type.RANGE_DISTRIBUTED)) {
return ORDERING.compare(getKeys(), distribution.getKeys());
}
return type.compareTo(distribution.getType());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy