当前位置: 首页>>代码示例>>Java>>正文


Java IUpdate.setConsistent方法代码示例

本文整理汇总了Java中com.taobao.tddl.optimizer.core.plan.dml.IUpdate.setConsistent方法的典型用法代码示例。如果您正苦于以下问题:Java IUpdate.setConsistent方法的具体用法?Java IUpdate.setConsistent怎么用?Java IUpdate.setConsistent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.taobao.tddl.optimizer.core.plan.dml.IUpdate的用法示例。


在下文中一共展示了IUpdate.setConsistent方法的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;
}
 
开发者ID:beebeandwer,项目名称:TDDL,代码行数:29,代码来源:UpdateNode.java

示例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;
}
 
开发者ID:loye168,项目名称:tddl5,代码行数:44,代码来源:UpdateNode.java


注:本文中的com.taobao.tddl.optimizer.core.plan.dml.IUpdate.setConsistent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。