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

com.hazelcast.jet.sql.impl.opt.logical.UpdateLogicalRules Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
/*
 * Copyright 2021 Hazelcast Inc.
 *
 * Licensed under the Hazelcast Community License (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://hazelcast.com/hazelcast-community-license
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.hazelcast.jet.sql.impl.opt.logical;

import com.hazelcast.jet.sql.impl.connector.SqlConnectorUtil;
import com.hazelcast.jet.sql.impl.opt.OptUtils;
import com.hazelcast.jet.sql.impl.schema.HazelcastRelOptTable;
import com.hazelcast.jet.sql.impl.schema.HazelcastTable;
import com.hazelcast.jet.sql.impl.validate.types.HazelcastTypeFactory;
import com.hazelcast.sql.impl.schema.Table;
import com.hazelcast.sql.impl.schema.TableField;
import com.hazelcast.org.apache.calcite.plan.RelOptRule;
import com.hazelcast.org.apache.calcite.plan.RelOptRuleCall;
import com.hazelcast.org.apache.calcite.rel.RelNode;
import com.hazelcast.org.apache.calcite.rel.core.TableModify;
import com.hazelcast.org.apache.calcite.rel.type.RelDataType;
import com.hazelcast.org.apache.calcite.rex.RexBuilder;
import com.hazelcast.org.apache.calcite.rex.RexNode;

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

import static com.hazelcast.jet.sql.impl.opt.Conventions.LOGICAL;
import static com.hazelcast.org.apache.calcite.plan.RelOptRule.none;
import static com.hazelcast.org.apache.calcite.plan.RelOptRule.operand;
import static com.hazelcast.org.apache.calcite.plan.RelOptRule.operandJ;

// no support for UPDATE FROM SELECT case (which is not yet implemented)
// once joins are there we need to create complementary rule
final class UpdateLogicalRules {

    @SuppressWarnings("checkstyle:anoninnerlength")
    static final RelOptRule SCAN_INSTANCE =
            new RelOptRule(
                    operandJ(
                            TableModifyLogicalRel.class, LOGICAL, TableModify::isUpdate,
                            operand(FullScanLogicalRel.class, none())
                    ),
                    UpdateLogicalRules.class.getSimpleName()
            ) {
                @Override
                public void onMatch(RelOptRuleCall call) {
                    TableModifyLogicalRel update = call.rel(0);
                    FullScanLogicalRel scan = call.rel(1);

                    UpdateLogicalRel rel = new UpdateLogicalRel(
                            update.getCluster(),
                            OptUtils.toLogicalConvention(update.getTraitSet()),
                            update.getTable(),
                            update.getCatalogReader(),
                            rewriteScan(scan),
                            update.getUpdateColumnList(),
                            update.getSourceExpressionList(),
                            update.isFlattened()
                    );
                    call.transformTo(rel);
                }

                // rewrites existing project to just primary keys project
                private RelNode rewriteScan(FullScanLogicalRel scan) {
                    HazelcastRelOptTable relTable = (HazelcastRelOptTable) scan.getTable();
                    HazelcastTable hzTable = relTable.unwrap(HazelcastTable.class);

                    List keyProjects = keyProjects(scan.getCluster().getRexBuilder(), hzTable.getTarget());
                    HazelcastRelOptTable convertedTable = OptUtils.createRelTable(relTable,
                            hzTable.withProject(keyProjects, null), scan.getCluster().getTypeFactory());

                    return new FullScanLogicalRel(
                            scan.getCluster(),
                            OptUtils.toLogicalConvention(scan.getTraitSet()),
                            convertedTable,
                            null,
                            -1
                    );
                }

                public List keyProjects(RexBuilder rexBuilder, Table table) {
                    List primaryKey = SqlConnectorUtil.getJetSqlConnector(table).getPrimaryKey(table);
                    List res = new ArrayList<>(primaryKey.size());
                    for (int i = 0; i < table.getFieldCount(); i++) {
                        TableField field = table.getField(i);
                        if (primaryKey.contains(field.getName())) {
                            RelDataType type = OptUtils.convert(field, HazelcastTypeFactory.INSTANCE);
                            res.add(rexBuilder.makeInputRef(type, i));
                        }
                    }
                    return res;
                }
            };

    // Calcite replaces the table scan with empty VALUES when the WHERE clause
    // is always false
    // i.e. '... WHERE __key = 1 AND __key = 2'
    // could/should be optimized to no-op
    @SuppressWarnings("checkstyle:DeclarationOrder")
    static final RelOptRule VALUES_INSTANCE =
            new RelOptRule(
                    operandJ(
                            TableModifyLogicalRel.class, null, TableModify::isUpdate,
                            operand(ValuesLogicalRel.class, none())
                    ),
                    UpdateLogicalRules.class.getSimpleName() + "(NOOP)"
            ) {
                @Override
                public void onMatch(RelOptRuleCall call) {
                    TableModifyLogicalRel update = call.rel(0);
                    ValuesLogicalRel values = call.rel(1);

                    UpdateLogicalRel rel = new UpdateLogicalRel(
                            update.getCluster(),
                            OptUtils.toLogicalConvention(update.getTraitSet()),
                            update.getTable(),
                            update.getCatalogReader(),
                            OptUtils.toLogicalInput(values),
                            update.getUpdateColumnList(),
                            update.getSourceExpressionList(),
                            update.isFlattened()
                    );
                    call.transformTo(rel);
                }
            };

    private UpdateLogicalRules() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy