本文整理匯總了Java中com.taobao.tddl.optimizer.core.plan.dml.IUpdate.setUpdateColumns方法的典型用法代碼示例。如果您正苦於以下問題:Java IUpdate.setUpdateColumns方法的具體用法?Java IUpdate.setUpdateColumns怎麽用?Java IUpdate.setUpdateColumns使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.taobao.tddl.optimizer.core.plan.dml.IUpdate
的用法示例。
在下文中一共展示了IUpdate.setUpdateColumns方法的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;
}