com.hazelcast.shaded.org.apache.calcite.rex.RexAnalyzer 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.shaded.org.apache.calcite.rex;
import com.hazelcast.shaded.org.apache.calcite.linq4j.Linq4j;
import com.hazelcast.shaded.org.apache.calcite.plan.RelOptPredicateList;
import com.hazelcast.shaded.org.apache.calcite.rel.metadata.NullSentinel;
import com.hazelcast.shaded.org.apache.calcite.util.Compatible;
import com.hazelcast.shaded.org.apache.calcite.util.NlsString;
import com.hazelcast.shaded.org.apache.calcite.util.Pair;
import com.hazelcast.shaded.org.apache.calcite.util.Util;
import com.hazelcast.shaded.com.google.common.collect.ImmutableList;
import java.math.BigDecimal;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
/** Analyzes an expression, figures out what are the unbound variables,
* assigns a variety of values to each unbound variable, and evaluates
* the expression. */
public class RexAnalyzer {
public final RexNode e;
public final List variables;
public final int unsupportedCount;
/** Creates a RexAnalyzer. */
public RexAnalyzer(RexNode e, RelOptPredicateList predicates) {
this.e = e;
final VariableCollector variableCollector = new VariableCollector();
e.accept(variableCollector);
variableCollector.visitEach(predicates.pulledUpPredicates);
variables = ImmutableList.copyOf(variableCollector.builder);
unsupportedCount = variableCollector.unsupportedCount;
}
/** Generates a map of variables and lists of values that could be assigned
* to them. */
@SuppressWarnings("BetaApi")
public Iterable
© 2015 - 2024 Weber Informatics LLC | Privacy Policy