本文整理汇总了Java中com.taobao.tddl.optimizer.core.plan.dml.IUpdate.executeOn方法的典型用法代码示例。如果您正苦于以下问题:Java IUpdate.executeOn方法的具体用法?Java IUpdate.executeOn怎么用?Java IUpdate.executeOn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.taobao.tddl.optimizer.core.plan.dml.IUpdate
的用法示例。
在下文中一共展示了IUpdate.executeOn方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: toDataNodeExecutor
import com.taobao.tddl.optimizer.core.plan.dml.IUpdate; //导入方法依赖的package包/类
@Override
public IDataNodeExecutor toDataNodeExecutor() throws QueryException {
IUpdate update = ASTNodeFactory.getInstance().createUpdate();
for (ISelectable updateColumn : this.getColumns()) {
if (this.getNode().getTableMeta().getPrimaryIndex().getPartitionColumns().contains(updateColumn)) {
throw new IllegalArgumentException("column :" + updateColumn.getColumnName() + " 是分库键,不允许修改");
}
if (this.getNode().getTableMeta().getPrimaryKeyMap().containsKey(updateColumn.getColumnName())) {
throw new IllegalArgumentException("column :" + updateColumn.getColumnName() + " 是主键,不允许修改");
}
}
update.setConsistent(true);
update.executeOn(this.getNode().getDataNode());
update.setQueryTree(this.getNode().toDataNodeExecutor());
update.setUpdateColumns(this.getUpdateColumns());
update.setUpdateValues(values);
if (this.getNode().getActualTableName() != null) {
update.setTableName(this.getNode().getActualTableName());
} else if (this.getNode() instanceof KVIndexNode) {
update.setTableName(((KVIndexNode) this.getNode()).getIndexName());
} else {
update.setTableName(this.getNode().getTableName());
}
update.setIndexName(this.getNode().getIndexUsed().getName());
return update;
}
示例2: toDataNodeExecutor
import com.taobao.tddl.optimizer.core.plan.dml.IUpdate; //导入方法依赖的package包/类
@Override
public IPut toDataNodeExecutor(int shareIndex) {
IUpdate update = ASTNodeFactory.getInstance().createUpdate();
for (ISelectable updateColumn : this.getColumns()) {
List<String> partiionColumns = OptimizerContext.getContext()
.getRule()
.getSharedColumns(this.getNode().getTableMeta().getTableName());
if (partiionColumns.contains(updateColumn.getColumnName())) {
throw new IllegalArgumentException("column :" + updateColumn.getColumnName() + " 是分库键,不允许修改");
}
if (this.getNode().getTableMeta().getPrimaryKeyMap().containsKey(updateColumn.getColumnName())) {
throw new IllegalArgumentException("column :" + updateColumn.getColumnName() + " 是主键,不允许修改");
}
}
update.setConsistent(true);
update.executeOn(this.getNode().getDataNode());
update.setQueryTree((IQueryTree) this.getNode().toDataNodeExecutor());
update.setUpdateColumns(this.getUpdateColumns());
update.setUpdateValues(values);
update.setIgnore(this.isIgnore());
update.setQuick(this.isQuick());
update.setLowPriority(this.lowPriority);
update.setHighPriority(this.highPriority);
update.setDelayed(this.isDelayed());
if (this.getNode().getActualTableName() != null) {
update.setTableName(this.getNode().getActualTableName());
} else if (this.getNode() instanceof KVIndexNode) {
update.setTableName(((KVIndexNode) this.getNode()).getIndexName());
} else {
update.setTableName(this.getNode().getTableName());
}
update.setIndexName(this.getNode().getIndexUsed().getName());
update.setBatchIndexs(this.getBatchIndexs());
update.setMultiValues(this.isMultiValues());
update.setMultiValues(this.getMultiValues());
update.setExistSequenceVal(this.isExistSequenceVal());
return update;
}