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

Method GetTableDescriptor

be/src/runtime/descriptors.cc:715–718  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

713}
714
715TableDescriptor* DescriptorTbl::GetTableDescriptor(TableId id) const {
716 TableDescriptorMap::const_iterator i = tbl_desc_map_.find(id);
717 return i == tbl_desc_map_.end() ? nullptr : i->second;
718}
719
720TupleDescriptor* DescriptorTbl::GetTupleDescriptor(TupleId id) const {
721 TupleDescriptorMap::const_iterator i = tuple_desc_map_.find(id);

Callers 6

InitMethod · 0.80
PrepareMethod · 0.80
PrepareMethod · 0.80
PrepareMethod · 0.80
PrepareMethod · 0.80
CreateInternalMethod · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected