MCPcopy Create free account
hub / github.com/apache/impala / RematerializeTuples

Method RematerializeTuples

be/src/exec/topn-node.cc:777–784  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

775}
776
777Status TopNNode::Heap::RematerializeTuples(TopNNode* node,
778 RuntimeState* state, MemPool* new_pool) {
779 RETURN_IF_ERROR(RematerializeTuplesHelper(
780 node, state, new_pool, priority_queue_.Begin(), priority_queue_.End()));
781 RETURN_IF_ERROR(RematerializeTuplesHelper(
782 node, state, new_pool, overflowed_ties_.begin(), overflowed_ties_.end()));
783 return Status::OK();
784}
785
786template class impala::PriorityQueue<Tuple*, TupleRowComparator>;
787template class impala::PriorityQueueIterator<Tuple*, TupleRowComparator>;

Callers 1

ReclaimTuplePoolMethod · 0.80

Calls 5

OKFunction · 0.85
BeginMethod · 0.45
EndMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected