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

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

import com.hazelcast.org.apache.calcite.plan.RelOptTable;
import com.hazelcast.org.apache.calcite.prepare.Prepare;
import com.hazelcast.org.apache.calcite.rel.core.TableModify.Operation;
import com.hazelcast.org.apache.calcite.rel.type.RelDataType;
import com.hazelcast.org.apache.calcite.rex.RexNode;

import java.util.List;
import java.util.Objects;

/** Mutable equivalent of {@link com.hazelcast.org.apache.calcite.rel.core.TableModify}. */
public class MutableTableModify extends MutableSingleRel {
  public final Prepare.CatalogReader catalogReader;
  public final RelOptTable table;
  public final Operation operation;
  public final List updateColumnList;
  public final List sourceExpressionList;
  public final boolean flattened;

  private MutableTableModify(RelDataType rowType, MutableRel input,
      RelOptTable table, Prepare.CatalogReader catalogReader,
      Operation operation, List updateColumnList,
      List sourceExpressionList, boolean flattened) {
    super(MutableRelType.TABLE_MODIFY, rowType, input);
    this.table = table;
    this.catalogReader = catalogReader;
    this.operation = operation;
    this.updateColumnList = updateColumnList;
    this.sourceExpressionList = sourceExpressionList;
    this.flattened = flattened;
  }

  /**
   * Creates a MutableTableModify.
   *
   * @param rowType               Row type
   * @param input                 Input relational expression
   * @param table                 Target table to modify
   * @param catalogReader         Accessor to the table metadata
   * @param operation             Modify operation (INSERT, UPDATE, DELETE)
   * @param updateColumnList      List of column identifiers to be updated
   *                              (e.g. ident1, ident2); null if not UPDATE
   * @param sourceExpressionList  List of value expressions to be set
   *                              (e.g. exp1, exp2); null if not UPDATE
   * @param flattened             Whether set flattens the input row type
   */
  public static MutableTableModify of(RelDataType rowType,
      MutableRel input, RelOptTable table,
      Prepare.CatalogReader catalogReader,
      Operation operation, List updateColumnList,
      List sourceExpressionList, boolean flattened) {
    return new MutableTableModify(rowType, input, table, catalogReader,
        operation, updateColumnList, sourceExpressionList, flattened);
  }

  @Override public boolean equals(Object obj) {
    return obj == this
        || obj instanceof MutableTableModify
        && table.getQualifiedName().equals(
            ((MutableTableModify) obj).table.getQualifiedName())
        && operation == ((MutableTableModify) obj).operation
        && Objects.equals(updateColumnList,
            ((MutableTableModify) obj).updateColumnList)
        && MutableRel.PAIRWISE_STRING_EQUIVALENCE.equivalent(
            sourceExpressionList, ((MutableTableModify) obj).sourceExpressionList)
        && flattened == ((MutableTableModify) obj).flattened
        && input.equals(((MutableTableModify) obj).input);
  }

  @Override public int hashCode() {
    return Objects.hash(input, table.getQualifiedName(),
        operation, updateColumnList,
        MutableRel.PAIRWISE_STRING_EQUIVALENCE.hash(sourceExpressionList),
        flattened);
  }

  @Override public StringBuilder digest(StringBuilder buf) {
    buf.append("TableModify(table: ").append(table.getQualifiedName())
        .append(", operation: ").append(operation);
    if (updateColumnList != null) {
      buf.append(", updateColumnList: ").append(updateColumnList);
    }
    if (sourceExpressionList != null) {
      buf.append(", sourceExpressionList: ").append(sourceExpressionList);
    }
    return buf.append(", flattened: ").append(flattened).append(")");
  }

  @Override public MutableRel clone() {
    return MutableTableModify.of(rowType, input.clone(), table, catalogReader,
        operation, updateColumnList, sourceExpressionList, flattened);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy