| 489 | } |
| 490 | |
| 491 | std::string IterStatus(Iterator* iter) { |
| 492 | std::string result; |
| 493 | if (iter->Valid()) { |
| 494 | result = iter->key().ToString() + "->" + iter->value().ToString(); |
| 495 | } else { |
| 496 | result = "(invalid)"; |
| 497 | } |
| 498 | return result; |
| 499 | } |
| 500 | |
| 501 | bool DeleteAnSSTFile() { |
| 502 | std::vector<std::string> filenames; |