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

Method GetTupleDescs

be/src/runtime/descriptors.cc:730–736  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

728}
729
730void DescriptorTbl::GetTupleDescs(vector<TupleDescriptor*>* descs) const {
731 descs->clear();
732 for (TupleDescriptorMap::const_iterator i = tuple_desc_map_.begin();
733 i != tuple_desc_map_.end(); ++i) {
734 descs->push_back(i->second);
735 }
736}
737
738void SlotDescriptor::CodegenLoadAnyVal(CodegenAnyVal* any_val, llvm::Value* raw_val_ptr) {
739 DCHECK(raw_val_ptr->getType()->isPointerTy());

Callers 1

TESTFunction · 0.80

Calls 4

push_backMethod · 0.80
clearMethod · 0.65
beginMethod · 0.45
endMethod · 0.45

Tested by 1

TESTFunction · 0.64