| 569 | } |
| 570 | |
| 571 | void WriteTable(const TableMeta& meta, std::ofstream& ofs) { |
| 572 | std::string key, value; |
| 573 | MakeMetaTableKeyValue(meta, &key, &value); |
| 574 | WriteToStream(ofs, key, value); |
| 575 | } |
| 576 | |
| 577 | void WriteTablet(const TabletMeta& meta, std::ofstream& ofs) { |
| 578 | std::string key, value; |
no test coverage detected