| 344 | } |
| 345 | |
| 346 | string PrintTableList(const vector<TTableName>& tbls) { |
| 347 | stringstream ss; |
| 348 | for (int i = 0; i < tbls.size(); ++i) { |
| 349 | if (i != 0) ss << ","; |
| 350 | ss << tbls[i].db_name << "." << tbls[i].table_name; |
| 351 | } |
| 352 | return ss.str(); |
| 353 | } |
| 354 | |
| 355 | string GetBuildVersion(bool compact) { |
| 356 | stringstream ss; |
no test coverage detected