| 713 | } |
| 714 | |
| 715 | TableDescriptor* 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 | |
| 720 | TupleDescriptor* DescriptorTbl::GetTupleDescriptor(TupleId id) const { |
| 721 | TupleDescriptorMap::const_iterator i = tuple_desc_map_.find(id); |