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

com.hazelcast.org.apache.calcite.rel.core.JoinInfo Maven / Gradle / Ivy

/*
 * 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 com.hazelcast.org.apache.calcite.rel.core;

import com.hazelcast.org.apache.calcite.plan.RelOptUtil;
import com.hazelcast.org.apache.calcite.rel.RelNode;
import com.hazelcast.org.apache.calcite.rex.RexBuilder;
import com.hazelcast.org.apache.calcite.rex.RexNode;
import com.hazelcast.org.apache.calcite.rex.RexUtil;
import com.hazelcast.org.apache.calcite.runtime.FlatLists;
import com.hazelcast.org.apache.calcite.util.ImmutableBitSet;
import com.hazelcast.org.apache.calcite.util.ImmutableIntList;
import com.hazelcast.org.apache.calcite.util.mapping.IntPair;

import com.hazelcast.com.google.common.collect.ImmutableList;

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;

/** An analyzed join condition.
 *
 * 

It is useful for the many algorithms that care whether a join has an * equi-join condition. * *

You can create one using {@link #of}, or call * {@link Join#analyzeCondition()}; many kinds of join cache their * join info, especially those that are equi-joins.

* * @see Join#analyzeCondition() */ public class JoinInfo { public final ImmutableIntList leftKeys; public final ImmutableIntList rightKeys; public final ImmutableList nonEquiConditions; /** Creates a JoinInfo. */ protected JoinInfo(ImmutableIntList leftKeys, ImmutableIntList rightKeys, ImmutableList nonEquiConditions) { this.leftKeys = Objects.requireNonNull(leftKeys); this.rightKeys = Objects.requireNonNull(rightKeys); this.nonEquiConditions = Objects.requireNonNull(nonEquiConditions); assert leftKeys.size() == rightKeys.size(); } /** Creates a {@code JoinInfo} by analyzing a condition. */ public static JoinInfo of(RelNode left, RelNode right, RexNode condition) { final List leftKeys = new ArrayList<>(); final List rightKeys = new ArrayList<>(); final List filterNulls = new ArrayList<>(); final List nonEquiList = new ArrayList<>(); RelOptUtil.splitJoinCondition(left, right, condition, leftKeys, rightKeys, filterNulls, nonEquiList); return new JoinInfo(ImmutableIntList.copyOf(leftKeys), ImmutableIntList.copyOf(rightKeys), ImmutableList.copyOf(nonEquiList)); } /** Creates an equi-join. */ public static JoinInfo of(ImmutableIntList leftKeys, ImmutableIntList rightKeys) { return new JoinInfo(leftKeys, rightKeys, ImmutableList.of()); } /** Returns whether this is an equi-join. */ public boolean isEqui() { return nonEquiConditions.isEmpty(); } /** Returns a list of (left, right) key ordinals. */ public List pairs() { return IntPair.zip(leftKeys, rightKeys); } public ImmutableBitSet leftSet() { return ImmutableBitSet.of(leftKeys); } public ImmutableBitSet rightSet() { return ImmutableBitSet.of(rightKeys); } @Deprecated // to be removed before 2.0 public RexNode getRemaining(RexBuilder rexBuilder) { return RexUtil.composeConjunction(rexBuilder, nonEquiConditions); } public RexNode getEquiCondition(RelNode left, RelNode right, RexBuilder rexBuilder) { return RelOptUtil.createEquiJoinCondition(left, leftKeys, right, rightKeys, rexBuilder); } public List keys() { return FlatLists.of(leftKeys, rightKeys); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy