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


Java ColMetaAndIndex类代码示例

本文整理汇总了Java中com.taobao.tddl.executor.cursor.impl.ColMetaAndIndex的典型用法代码示例。如果您正苦于以下问题:Java ColMetaAndIndex类的具体用法?Java ColMetaAndIndex怎么用?Java ColMetaAndIndex使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ColMetaAndIndex类属于com.taobao.tddl.executor.cursor.impl包,在下文中一共展示了ColMetaAndIndex类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: fillRowSet

import com.taobao.tddl.executor.cursor.impl.ColMetaAndIndex; //导入依赖的package包/类
protected void fillRowSet(IRowSet iRowSet, boolean max) {
    ICursorMeta icm = iRowSet.getParentCursorMeta();
    Iterator<ColMetaAndIndex> iterator = icm.indexIterator();
    while (iterator.hasNext()) {
        ColMetaAndIndex cai = iterator.next();
        String cname = cai.getName();
        List<ColumnMeta> columns = iRowSet.getParentCursorMeta().getColumns();
        // TODO shenxun : 如果条件是null。。。没处理。。应该在Comparator里面处理
        if (iRowSet.getObject(cai.getIndex()) == null) {
            boolean find = false;
            for (ColumnMeta cm : columns) {
                if (cname.equalsIgnoreCase(cm.getName())) {
                    find = true;
                    iRowSet.setObject(cai.getIndex(), getExtremum(max, cm.getDataType()));
                    break;
                }
            }
            if (!find) {
                throw new IllegalStateException(" can't find column name : " + cname + " on . " + columns);
            }
        }
    }
}
 
开发者ID:loye168,项目名称:tddl5,代码行数:24,代码来源:RangeMaker.java

示例2: fillRowSet

import com.taobao.tddl.executor.cursor.impl.ColMetaAndIndex; //导入依赖的package包/类
private void fillRowSet(IRowSet iRowSet, boolean max) {
    ICursorMeta icm = iRowSet.getParentCursorMeta();
    Iterator<ColMetaAndIndex> iterator = icm.indexIterator();
    while (iterator.hasNext()) {
        ColMetaAndIndex cai = iterator.next();
        String cname = cai.getName();
        List<ColumnMeta> columns = iRowSet.getParentCursorMeta().getColumns();
        // TODO shenxun : 如果条件是null。。。没处理。。应该在Comparator里面处理
        if (iRowSet.getObject(cai.getIndex()) == null) {
            boolean find = false;
            for (ColumnMeta cm : columns) {
                if (cname.equalsIgnoreCase(cm.getName())) {
                    find = true;
                    iRowSet.setObject(cai.getIndex(), getExtremum(max, cm.getDataType()));
                    break;
                }
            }
            if (!find) {
                throw new IllegalStateException(" can't find column name : " + cname + " on . " + columns);
            }
        }
    }
}
 
开发者ID:beebeandwer,项目名称:TDDL,代码行数:24,代码来源:RangeMaker.java

示例3: convertToClonableRecord

import com.taobao.tddl.executor.cursor.impl.ColMetaAndIndex; //导入依赖的package包/类
public static CloneableRecord convertToClonableRecord(IRowSet iRowSet) {
    Iterator<ColMetaAndIndex> columnIterator = iRowSet.getParentCursorMeta().indexIterator();
    CloneableRecord cr = new FixedLengthRecord(iRowSet.getParentCursorMeta().getColumns());
    while (columnIterator.hasNext()) {
        ColMetaAndIndex cmAndIndex = columnIterator.next();
        cr.put(cmAndIndex.getName(), iRowSet.getObject(cmAndIndex.getIndex()));
    }
    return cr;
}
 
开发者ID:loye168,项目名称:tddl5,代码行数:10,代码来源:ExecUtils.java

示例4: indexIterator

import com.taobao.tddl.executor.cursor.impl.ColMetaAndIndex; //导入依赖的package包/类
Iterator<ColMetaAndIndex> indexIterator(); 
开发者ID:loye168,项目名称:tddl5,代码行数:2,代码来源:ICursorMeta.java


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