本文整理汇总了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 ¶ms)
{
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;
}