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

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

The newest version!
/*
 * Copyright 2024 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.shaded.org.apache.calcite.plan.RelOptCluster;
import com.hazelcast.shaded.org.apache.calcite.plan.RelOptCost;
import com.hazelcast.shaded.org.apache.calcite.plan.RelOptPlanner;
import com.hazelcast.shaded.org.apache.calcite.plan.RelOptTable;
import com.hazelcast.shaded.org.apache.calcite.plan.RelOptUtil;
import com.hazelcast.shaded.org.apache.calcite.plan.RelTraitSet;
import com.hazelcast.shaded.org.apache.calcite.prepare.Prepare.CatalogReader;
import com.hazelcast.shaded.org.apache.calcite.rel.AbstractRelNode;
import com.hazelcast.shaded.org.apache.calcite.rel.RelNode;
import com.hazelcast.shaded.org.apache.calcite.rel.RelWriter;
import com.hazelcast.shaded.org.apache.calcite.rel.metadata.RelMetadataQuery;
import com.hazelcast.shaded.org.apache.calcite.rel.type.RelDataType;
import com.hazelcast.shaded.org.apache.calcite.rex.RexNode;
import com.hazelcast.shaded.org.apache.calcite.sql.SqlKind;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.Collections;
import java.util.List;

public class UpdateLogicalRel extends AbstractRelNode implements LogicalRel {

    private final RelOptTable table;
    private final CatalogReader catalogReader;
    private final RelNode input;
    private final List updateColumnList;
    private final List sourceExpressionList;
    private final boolean flattened;
    private final RexNode predicate;

    UpdateLogicalRel(
            RelOptCluster cluster,
            RelTraitSet traitSet,
            @Nonnull RelOptTable table,
            @Nonnull CatalogReader catalogReader,
            @Nullable RelNode input,
            @Nonnull List updateColumnList,
            @Nonnull List sourceExpressionList,
            boolean flattened,
            @Nullable RexNode predicate
    ) {
        super(cluster, traitSet);
        this.table = table;
        this.catalogReader = catalogReader;
        this.input = input;
        this.updateColumnList = updateColumnList;
        this.sourceExpressionList = sourceExpressionList;
        this.flattened = flattened;
        this.predicate = predicate;
    }

    @Override
    public RelOptCost computeSelfCost(RelOptPlanner planner, RelMetadataQuery mq) {
        // If we have input, each row has to be updated separately,
        // so we get cost of scan + cost of update.
        // If there is no input, the update still has to executed in the connected system
        // which will also have cost proportional to number of rows.
        // Version with no input will be preferred because of smaller total cost.
        return super.computeSelfCost(planner, mq);
    }

    @Nonnull
    @Override
    public RelOptTable getTable() {
        return table;
    }

    public CatalogReader getCatalogReader() {
        return catalogReader;
    }

    public RelNode getInput() {
        return input;
    }

    @Override
    public List getInputs() {
        return input != null ? Collections.singletonList(input) : Collections.emptyList();
    }

    public List getUpdateColumnList() {
        return updateColumnList;
    }

    public List getSourceExpressionList() {
        return sourceExpressionList;
    }

    public boolean isFlattened() {
        return flattened;
    }

    public RexNode getPredicate() {
        return predicate;
    }

    @Override
    public RelDataType deriveRowType() {
        return RelOptUtil.createDmlRowType(SqlKind.UPDATE, getCluster().getTypeFactory());
    }

    @Override
    public RelNode copy(RelTraitSet traitSet, List inputs) {
        return new UpdateLogicalRel(
                getCluster(),
                traitSet,
                getTable(),
                getCatalogReader(),
                sole(inputs),
                getUpdateColumnList(),
                getSourceExpressionList(),
                isFlattened(),
                predicate
        );
    }

    @Override
    public RelWriter explainTerms(RelWriter pw) {
        RelWriter w = super.explainTerms(pw);
        if (input != null) {
            w.input("input", getInput());
        }
        return w
                .item("table", table.getQualifiedName())
                .item("updateColumnList", updateColumnList)
                .item("sourceExpressionList", sourceExpressionList)
                .item("flattened", flattened)
                .itemIf("predicate", predicate, predicate != null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy