| 332 | } |
| 333 | |
| 334 | string PrintNumericPath(const SchemaPath& path) { |
| 335 | stringstream ss; |
| 336 | ss << "["; |
| 337 | if (path.size() > 0) ss << path[0]; |
| 338 | for (int i = 1; i < path.size(); ++i) { |
| 339 | ss << " "; |
| 340 | ss << path[i]; |
| 341 | } |
| 342 | ss << "]"; |
| 343 | return ss.str(); |
| 344 | } |
| 345 | |
| 346 | string PrintTableList(const vector<TTableName>& tbls) { |
| 347 | stringstream ss; |
no test coverage detected