| 883 | } |
| 884 | |
| 885 | const ColumnDescriptor* SchemaDescriptor::Column(int i) const { |
| 886 | CheckColumnBounds(i, leaves_.size()); |
| 887 | return &leaves_[i]; |
| 888 | } |
| 889 | |
| 890 | int SchemaDescriptor::ColumnIndex(const std::string& node_path) const { |
| 891 | auto search = leaf_to_idx_.find(node_path); |