/** * 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 compliance * with the License. You may obtain a copy of the License at * * http://www.apache.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 org.apache.tajo.engine.planner.logical; import com.google.gson.annotations.Expose; import org.apache.hadoop.fs.Path; import org.apache.tajo.catalog.Schema; import org.apache.tajo.catalog.TableDesc; import org.apache.tajo.engine.planner.PlanString; import org.apache.tajo.util.TUtil; public class InsertNode extends StoreTableNode implements Cloneable { @Expose private boolean overwrite; @Expose private Schema tableSchema; /** a target schema of a target table */ @Expose private Schema targetSchema; /** a output schema of select clause */ @Expose private Schema projectedSchema; @Expose private Path path; public InsertNode(int pid) { super(pid, NodeType.INSERT); } public void setTargetTable(TableDesc desc) { setTableName(desc.getName()); if (desc.hasPartition()) { tableSchema = desc.getLogicalSchema(); } else { tableSchema = desc.getSchema(); } setPath(desc.getPath()); setOptions(desc.getMeta().getOptions()); setStorageType(desc.getMeta().getStoreType()); if (desc.hasPartition()) { this.setPartitionMethod(desc.getPartitionMethod()); } } public void setTargetLocation(Path path) { this.path = path; } public void setSubQuery(LogicalNode subQuery) { this.setChild(subQuery); this.setInSchema(subQuery.getOutSchema()); this.setOutSchema(subQuery.getOutSchema()); } public boolean isOverwrite() { return overwrite; } public void setOverwrite(boolean overwrite) { this.overwrite = overwrite; } public Schema getTableSchema() { return tableSchema; } public void setTableSchema(Schema tableSchema) { this.tableSchema = tableSchema; } public boolean hasTargetSchema() { return this.targetSchema != null; } public Schema getTargetSchema() { return this.targetSchema; } public void setTargetSchema(Schema schema) { this.targetSchema = schema; } public Schema getProjectedSchema() { return this.projectedSchema; } public void setProjectedSchema(Schema projected) { this.projectedSchema = projected; } public boolean hasPath() { return this.path != null; } public void setPath(Path path) { this.path = path; } public Path getPath() { return this.path; } public boolean hasStorageType() { return this.storageType != null; } @Override public boolean equals(Object obj) { if (obj instanceof InsertNode) { InsertNode other = (InsertNode) obj; return super.equals(other) && this.overwrite == other.overwrite && TUtil.checkEquals(this.tableSchema, other.tableSchema) && TUtil.checkEquals(this.targetSchema, other.targetSchema) && TUtil.checkEquals(path, other.path); } else { return false; } } @Override public Object clone() throws CloneNotSupportedException { InsertNode insertNode = (InsertNode) super.clone(); insertNode.overwrite = overwrite; insertNode.tableSchema = new Schema(tableSchema); insertNode.targetSchema = targetSchema != null ? new Schema(targetSchema) : null; insertNode.path = path != null ? new Path(path.toString()) : null; return insertNode; } public String toString() { StringBuilder sb = new StringBuilder("Insert (overwrite=").append(overwrite); if (hasTargetTable()) { sb.append(",table=").append(tableName); } if (hasPath()) { sb.append(", location=").append(path); } sb.append(")"); return sb.toString(); } @Override public void preOrder(LogicalNodeVisitor visitor) { getChild().preOrder(visitor); visitor.visit(this); } @Override public void postOrder(LogicalNodeVisitor visitor) { visitor.visit(this); getChild().postOrder(visitor); } @Override public PlanString getPlanString() { PlanString planString = new PlanString(this); planString.appendTitle(" INTO "); if (hasTargetTable()) { planString.appendTitle(getTableName()); if (hasTargetSchema()) { planString.addExplan(getTargetSchema().toString()); } } else { planString.addExplan("LOCATION " + path); } return planString; } }