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


C++ TableIterator::getLocation方法代码示例

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


在下文中一共展示了TableIterator::getLocation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: tuple

bool
LimitExecutor::p_execute(const NValueArray &params)
{
    LimitPlanNode* node = dynamic_cast<LimitPlanNode*>(m_abstractNode);
    assert(node);
    Table* output_table = node->getOutputTable();
    assert(output_table);
    Table* input_table = node->getInputTables()[0];
    assert(input_table);

    //
    // Grab the iterator for our input table, and loop through until
    // we have copy enough tuples for the limit specified by the node
    //
    TableTuple tuple(input_table->schema());
    TableIterator iterator = input_table->iterator();
    int tuple_ctr = 0;

    int limit = 0, offset = 0;
    bool start = (node->getOffset() == 0);
    node->getLimitAndOffsetByReference(params, limit, offset);

    while (iterator.next(tuple) && (tuple_ctr < limit))
    {
        // TODO: need a way to skip / iterate N items.
        if (start) {
            if (!output_table->insertTuple(tuple))
            {
                VOLT_ERROR("Failed to insert tuple from input table '%s' into"
                           " output table '%s'",
                           input_table->name().c_str(),
                           output_table->name().c_str());
                return false;
            }
            tuple_ctr++;
        } else
        {
            start = (iterator.getLocation() >= offset);
        }
    }

    return true;
}
开发者ID:ifcharming,项目名称:original2.0,代码行数:43,代码来源:limitexecutor.cpp


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