| 479 | } |
| 480 | |
| 481 | std::string Block::dumpNames() const |
| 482 | { |
| 483 | WriteBufferFromOwnString out; |
| 484 | for (auto it = data.begin(); it != data.end(); ++it) |
| 485 | { |
| 486 | if (it != data.begin()) |
| 487 | out << ", "; |
| 488 | out << it->name; |
| 489 | } |
| 490 | return out.str(); |
| 491 | } |
| 492 | |
| 493 | |
| 494 | std::string Block::dumpStructure() const |
no test coverage detected