blob: bf88079a3ef3ecc73f8e9df7e128e9f3d05cdb11 [file] [log] [blame]
/*
* 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.spark.sql.merge.model;
import java.util.List;
import org.apache.spark.sql.catalyst.expressions.Expression;
import org.apache.spark.sql.execution.command.mutation.merge.MergeAction;
public class CarbonMergeIntoModel {
TableModel target;
TableModel source;
Expression mergeCondition;
List<Expression> mergeExpressions;
List<MergeAction> mergeActions;
public CarbonMergeIntoModel(TableModel target, TableModel source, Expression mergeCondition,
List<Expression> mergeExpressions, List<MergeAction> mergeActions) {
this.target = target;
this.source = source;
this.mergeCondition = mergeCondition;
this.mergeExpressions = mergeExpressions;
this.mergeActions = mergeActions;
}
public TableModel getTarget() {
return target;
}
public void setTarget(TableModel target) {
this.target = target;
}
public TableModel getSource() {
return source;
}
public void setSource(TableModel source) {
this.source = source;
}
public Expression getMergeCondition() {
return mergeCondition;
}
public void setMergeCondition(Expression mergeCondition) {
this.mergeCondition = mergeCondition;
}
public List<Expression> getMergeExpressions() {
return mergeExpressions;
}
public void setMergeExpressions(List<Expression> mergeExpressions) {
this.mergeExpressions = mergeExpressions;
}
public List<MergeAction> getMergeActions() {
return mergeActions;
}
public void setMergeActions(List<MergeAction> mergeActions) {
this.mergeActions = mergeActions;
}
}