| 324 | } |
| 325 | |
| 326 | string PrintSubPath(const TableDescriptor& tbl_desc, const SchemaPath& path, |
| 327 | int end_path_idx) { |
| 328 | DCHECK_GE(end_path_idx, 0); |
| 329 | SchemaPath::const_iterator subpath_end = path.begin() + end_path_idx + 1; |
| 330 | SchemaPath subpath(path.begin(), subpath_end); |
| 331 | return PrintPath(tbl_desc, subpath); |
| 332 | } |
| 333 | |
| 334 | string PrintNumericPath(const SchemaPath& path) { |
| 335 | stringstream ss; |
no test coverage detected