blob: d21854721796c00daefd95be29e0f25f1e33ae7b [file] [log] [blame]
/*
* 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.flink.table.runtime.join.batch;
import org.apache.flink.table.plan.FlinkJoinRelType;
/**
* Join type for hash table.
*/
public enum HashJoinType {
INNER, BUILD_OUTER, PROBE_OUTER, FULL_OUTER, SEMI, ANTI, BUILD_LEFT_SEMI, BUILD_LEFT_ANTI;
public boolean isBuildOuter() {
return this.equals(BUILD_OUTER) || this.equals(FULL_OUTER);
}
public boolean isProbeOuter() {
return this.equals(PROBE_OUTER) || this.equals(FULL_OUTER);
}
public boolean buildLeftSemiOrAnti() {
return this.equals(BUILD_LEFT_SEMI) || this.equals(BUILD_LEFT_ANTI);
}
public boolean needSetProbed() {
return isBuildOuter() || buildLeftSemiOrAnti();
}
public static HashJoinType of(FlinkJoinRelType joinType, boolean leftIsBuild) {
switch (joinType) {
case INNER:
return INNER;
case LEFT:
return leftIsBuild ? BUILD_OUTER : PROBE_OUTER;
case RIGHT:
return leftIsBuild ? PROBE_OUTER : BUILD_OUTER;
case FULL:
return FULL_OUTER;
case SEMI:
return leftIsBuild ? BUILD_LEFT_SEMI : SEMI;
case ANTI:
return leftIsBuild ? BUILD_LEFT_ANTI : ANTI;
default:
throw new IllegalArgumentException("invalid: " + joinType);
}
}
public static HashJoinType of(boolean leftIsBuild, boolean leftOuter, boolean rightOuter) {
if (leftOuter && rightOuter) {
return FULL_OUTER;
} else if (leftOuter) {
return leftIsBuild ? BUILD_OUTER : PROBE_OUTER;
} else if (rightOuter) {
return leftIsBuild ? PROBE_OUTER : BUILD_OUTER;
} else {
return INNER;
}
}
}