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

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

There is a newer version: 5.4.0
Show 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 com.hazelcast.com.liance with
 * the License.  You may obtain a copy of the License at
 *
 * http://www.apache.com.hazelcast.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.config.CalciteSystemProperty;
import com.hazelcast.org.apache.calcite.plan.RelOptCluster;
import com.hazelcast.org.apache.calcite.plan.RelOptCost;
import com.hazelcast.org.apache.calcite.plan.RelOptPlanner;
import com.hazelcast.org.apache.calcite.plan.RelTraitSet;
import com.hazelcast.org.apache.calcite.rel.RelInput;
import com.hazelcast.org.apache.calcite.rel.RelNode;
import com.hazelcast.org.apache.calcite.rel.RelWriter;
import com.hazelcast.org.apache.calcite.rel.SingleRel;
import com.hazelcast.org.apache.calcite.rel.metadata.RelMdUtil;
import com.hazelcast.org.apache.calcite.rel.metadata.RelMetadataQuery;
import com.hazelcast.org.apache.calcite.rex.RexChecker;
import com.hazelcast.org.apache.calcite.rex.RexNode;
import com.hazelcast.org.apache.calcite.rex.RexProgram;
import com.hazelcast.org.apache.calcite.rex.RexShuttle;
import com.hazelcast.org.apache.calcite.rex.RexUtil;
import com.hazelcast.org.apache.calcite.util.Litmus;

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

import java.util.List;

/**
 * Relational expression that iterates over its input
 * and returns elements for which condition evaluates to
 * true.
 *
 * 

If the condition allows nulls, then a null value is treated the same as * false.

* * @see com.hazelcast.org.apache.calcite.rel.logical.LogicalFilter */ public abstract class Filter extends SingleRel { //~ Instance fields -------------------------------------------------------- protected final RexNode condition; //~ Constructors ----------------------------------------------------------- /** * Creates a filter. * * @param cluster Cluster that this relational expression belongs to * @param traits the traits of this rel * @param child input relational expression * @param condition boolean expression which determines whether a row is * allowed to pass */ protected Filter( RelOptCluster cluster, RelTraitSet traits, RelNode child, RexNode condition) { super(cluster, traits, child); assert condition != null; assert RexUtil.isFlat(condition) : condition; this.condition = condition; // Too expensive for everyday use: assert !CalciteSystemProperty.DEBUG.value() || isValid(Litmus.THROW, null); } /** * Creates a Filter by parsing serialized output. */ protected Filter(RelInput input) { this(input.getCluster(), input.getTraitSet(), input.getInput(), input.getExpression("condition")); } //~ Methods ---------------------------------------------------------------- @Override public final RelNode copy(RelTraitSet traitSet, List inputs) { return copy(traitSet, sole(inputs), getCondition()); } public abstract Filter copy(RelTraitSet traitSet, RelNode input, RexNode condition); @Override public List getChildExps() { return ImmutableList.of(condition); } public RelNode accept(RexShuttle shuttle) { RexNode condition = shuttle.apply(this.condition); if (this.condition == condition) { return this; } return copy(traitSet, getInput(), condition); } public RexNode getCondition() { return condition; } @Override public boolean isValid(Litmus litmus, Context context) { if (RexUtil.isNullabilityCast(getCluster().getTypeFactory(), condition)) { return litmus.fail("Cast for just nullability not allowed"); } final RexChecker checker = new RexChecker(getInput().getRowType(), context, litmus); condition.accept(checker); if (checker.getFailureCount() > 0) { return litmus.fail(null); } return litmus.succeed(); } @Override public RelOptCost com.hazelcast.com.uteSelfCost(RelOptPlanner planner, RelMetadataQuery mq) { double dRows = mq.getRowCount(this); double dCpu = mq.getRowCount(getInput()); double dIo = 0; return planner.getCostFactory().makeCost(dRows, dCpu, dIo); } @Override public double estimateRowCount(RelMetadataQuery mq) { return RelMdUtil.estimateFilteredRows(getInput(), condition, mq); } @Deprecated // to be removed before 2.0 public static double estimateFilteredRows(RelNode child, RexProgram program) { final RelMetadataQuery mq = child.getCluster().getMetadataQuery(); return RelMdUtil.estimateFilteredRows(child, program, mq); } @Deprecated // to be removed before 2.0 public static double estimateFilteredRows(RelNode child, RexNode condition) { final RelMetadataQuery mq = child.getCluster().getMetadataQuery(); return RelMdUtil.estimateFilteredRows(child, condition, mq); } public RelWriter explainTerms(RelWriter pw) { return super.explainTerms(pw) .item("condition", condition); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy