Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
zihaoAK47 committed Oct 15, 2023
1 parent 0c284b9 commit 95c7959
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.apache.calcite.plan.RelOptCluster;
import org.apache.calcite.plan.RelOptTable;
import org.apache.calcite.plan.RelTraitSet;
import org.apache.calcite.prepare.Prepare;
import org.apache.calcite.prepare.Prepare.CatalogReader;
import org.apache.calcite.rel.RelNode;
import org.apache.calcite.rel.core.TableModify;
import org.apache.calcite.rex.RexNode;
Expand All @@ -34,16 +34,14 @@
*/
public final class EnumerableModify extends TableModify implements EnumerableRel {

public EnumerableModify(final RelOptCluster cluster, final RelTraitSet traitSet, final RelOptTable table,
final Prepare.CatalogReader catalogReader, final RelNode input, final Operation operation,
final List<String> updateColumnList, final List<RexNode> sourceExpressionList, final boolean flattened) {
public EnumerableModify(final RelOptCluster cluster, final RelTraitSet traitSet, final RelOptTable table, final CatalogReader catalogReader,
final RelNode input, final Operation operation, final List<String> updateColumnList, final List<RexNode> sourceExpressionList, final boolean flattened) {
super(cluster, traitSet, table, catalogReader, input, operation, updateColumnList, sourceExpressionList, flattened);
}

@Override
public RelNode copy(final RelTraitSet traitSet, final List<RelNode> inputs) {
return new EnumerableModify(getCluster(), traitSet, getTable(), getCatalogReader(), sole(inputs), getOperation(),
getUpdateColumnList(), getSourceExpressionList(), isFlattened());
return new EnumerableModify(getCluster(), traitSet, getTable(), getCatalogReader(), sole(inputs), getOperation(), getUpdateColumnList(), getSourceExpressionList(), isFlattened());
}

@Override
Expand Down

0 comments on commit 95c7959

Please sign in to comment.