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


Java ITempTableSortCursor类代码示例

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


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

示例1: tempTableSortCursor

import com.taobao.tddl.executor.cursor.ITempTableSortCursor; //导入依赖的package包/类
@Override
public ITempTableSortCursor tempTableSortCursor(ExecutionContext executionContext, ISchematicCursor cursor,
                                                List<IOrderBy> orderBys, boolean sortedDuplicates, long requestID)
                                                                                                                  throws TddlException {
    try {
        if (GeneralUtil.getExtraCmdBoolean(executionContext.getExtraCmds(),
            ConnectionProperties.ALLOW_TEMPORARY_TABLE,
            false)) {

            IRepository bdbRepo = ExecutorContext.getContext()
                .getRepositoryHolder()
                .getOrCreateRepository(Group.GroupType.BDB_JE.name(),
                    Collections.EMPTY_MAP,
                    executionContext.getExtraCmds());
            return new TempTableSortCursor(this,
                bdbRepo,
                cursor,
                orderBys,
                sortedDuplicates,
                requestID,
                executionContext);
        }

        throw new IllegalStateException("not allow to use temporary table . allow first");

    } catch (Exception e) {
        closeParentCursor(cursor);
        throw new TddlException(e);
    }
}
 
开发者ID:loye168,项目名称:tddl5,代码行数:31,代码来源:CursorFactoryDefaultImpl.java

示例2: tempTableSortCursor

import com.taobao.tddl.executor.cursor.ITempTableSortCursor; //导入依赖的package包/类
@Override
public ITempTableSortCursor tempTableSortCursor(ExecutionContext executionContext, ISchematicCursor cursor,
                                                List<IOrderBy> orderBys, boolean sortedDuplicates, long requestID)
                                                                                                                  throws TddlException {
    try {
        if ("True".equalsIgnoreCase(GeneralUtil.getExtraCmdString(executionContext.getExtraCmds(),
            ExtraCmd.ALLOW_TEMPORARY_TABLE))) {

            IRepository bdbRepo = ExecutorContext.getContext()
                .getRepositoryHolder()
                .getOrCreateRepository(Group.GroupType.BDB_JE.name(), Collections.EMPTY_MAP);
            return new TempTableSortCursor(this,
                bdbRepo,
                cursor,
                orderBys,
                sortedDuplicates,
                requestID,
                executionContext);
        }

        throw new IllegalStateException("not allow to use temporary table . allow first ");

    } catch (Exception e) {
        closeParentCursor(cursor);
        throw new TddlException(e);
    }
}
 
开发者ID:beebeandwer,项目名称:TDDL,代码行数:28,代码来源:CursorFactoryDefaultImpl.java

示例3: tempTableSortCursor

import com.taobao.tddl.executor.cursor.ITempTableSortCursor; //导入依赖的package包/类
/**
 * 临时表的排序用cursor ,将数据拿出写入临时表中,并进行排序。
 * 
 * @param context
 * @param cursor
 * @param orderBys
 * @param sortedDuplicates
 * @param requestID
 * @return
 * @throws TddlException
 */
ITempTableSortCursor tempTableSortCursor(ExecutionContext context, ISchematicCursor cursor,
                                         List<IOrderBy> orderBys, boolean sortedDuplicates, long requestID)
                                                                                                           throws TddlException;
 
开发者ID:loye168,项目名称:tddl5,代码行数:15,代码来源:ICursorFactory.java


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