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

com.hazelcast.org.apache.calcite.rel.rules.FilterTableScanRule 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.rules;

import com.hazelcast.org.apache.calcite.adapter.enumerable.EnumerableInterpreter;
import com.hazelcast.org.apache.calcite.interpreter.Bindables;
import com.hazelcast.org.apache.calcite.plan.RelOptRule;
import com.hazelcast.org.apache.calcite.plan.RelOptRuleCall;
import com.hazelcast.org.apache.calcite.plan.RelOptRuleOperand;
import com.hazelcast.org.apache.calcite.plan.RelOptTable;
import com.hazelcast.org.apache.calcite.rel.core.Filter;
import com.hazelcast.org.apache.calcite.rel.core.RelFactories;
import com.hazelcast.org.apache.calcite.rel.core.TableScan;
import com.hazelcast.org.apache.calcite.rex.RexNode;
import com.hazelcast.org.apache.calcite.rex.RexUtil;
import com.hazelcast.org.apache.calcite.schema.FilterableTable;
import com.hazelcast.org.apache.calcite.schema.ProjectableFilterableTable;
import com.hazelcast.org.apache.calcite.tools.RelBuilderFactory;
import com.hazelcast.org.apache.calcite.util.ImmutableIntList;
import com.hazelcast.org.apache.calcite.util.mapping.Mapping;
import com.hazelcast.org.apache.calcite.util.mapping.Mappings;

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

/**
 * Planner rule that converts
 * a {@link com.hazelcast.org.apache.calcite.rel.core.Filter}
 * on a {@link com.hazelcast.org.apache.calcite.rel.core.TableScan}
 * of a {@link com.hazelcast.org.apache.calcite.schema.FilterableTable}
 * or a {@link com.hazelcast.org.apache.calcite.schema.ProjectableFilterableTable}
 * to a {@link com.hazelcast.org.apache.calcite.interpreter.Bindables.BindableTableScan}.
 *
 * 

The {@link #INTERPRETER} variant allows an intervening * {@link com.hazelcast.org.apache.calcite.adapter.enumerable.EnumerableInterpreter}. * * @see com.hazelcast.org.apache.calcite.rel.rules.ProjectTableScanRule */ public abstract class FilterTableScanRule extends RelOptRule { @SuppressWarnings("Guava") @Deprecated // to be removed before 2.0 public static final com.hazelcast.com.google.com.hazelcast.com.on.base.Predicate PREDICATE = FilterTableScanRule::test; /** Rule that matches Filter on TableScan. */ public static final FilterTableScanRule INSTANCE = new FilterTableScanRule( operand(Filter.class, operandJ(TableScan.class, null, FilterTableScanRule::test, none())), RelFactories.LOGICAL_BUILDER, "FilterTableScanRule") { public void onMatch(RelOptRuleCall call) { final Filter filter = call.rel(0); final TableScan scan = call.rel(1); apply(call, filter, scan); } }; /** Rule that matches Filter on EnumerableInterpreter on TableScan. */ public static final FilterTableScanRule INTERPRETER = new FilterTableScanRule( operand(Filter.class, operand(EnumerableInterpreter.class, operandJ(TableScan.class, null, FilterTableScanRule::test, none()))), RelFactories.LOGICAL_BUILDER, "FilterTableScanRule:interpreter") { public void onMatch(RelOptRuleCall call) { final Filter filter = call.rel(0); final TableScan scan = call.rel(2); apply(call, filter, scan); } }; //~ Constructors ----------------------------------------------------------- @Deprecated // to be removed before 2.0 protected FilterTableScanRule(RelOptRuleOperand operand, String description) { this(operand, RelFactories.LOGICAL_BUILDER, description); } /** Creates a FilterTableScanRule. */ protected FilterTableScanRule(RelOptRuleOperand operand, RelBuilderFactory relBuilderFactory, String description) { super(operand, relBuilderFactory, description); } //~ Methods ---------------------------------------------------------------- public static boolean test(TableScan scan) { // We can only push filters into a FilterableTable or // ProjectableFilterableTable. final RelOptTable table = scan.getTable(); return table.unwrap(FilterableTable.class) != null || table.unwrap(ProjectableFilterableTable.class) != null; } protected void apply(RelOptRuleCall call, Filter filter, TableScan scan) { final ImmutableIntList projects; final ImmutableList.Builder filters = ImmutableList.builder(); if (scan instanceof Bindables.BindableTableScan) { final Bindables.BindableTableScan bindableScan = (Bindables.BindableTableScan) scan; filters.addAll(bindableScan.filters); projects = bindableScan.projects; } else { projects = scan.identity(); } final Mapping mapping = Mappings.target(projects, scan.getTable().getRowType().getFieldCount()); filters.add( RexUtil.apply(mapping.inverse(), filter.getCondition())); call.transformTo( Bindables.BindableTableScan.create(scan.getCluster(), scan.getTable(), filters.build(), projects)); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy