| 723 | } |
| 724 | |
| 725 | SlotDescriptor* DescriptorTbl::GetSlotDescriptor(SlotId id) const { |
| 726 | SlotDescriptorMap::const_iterator i = slot_desc_map_.find(id); |
| 727 | return i == slot_desc_map_.end() ? nullptr : i->second; |
| 728 | } |
| 729 | |
| 730 | void DescriptorTbl::GetTupleDescs(vector<TupleDescriptor*>* descs) const { |
| 731 | descs->clear(); |
no test coverage detected