| 18 | |
| 19 | #if 0 |
| 20 | static void DumpInternalIter(Iterator* iter) { |
| 21 | for (iter->SeekToFirst(); iter->Valid(); iter->Next()) { |
| 22 | ParsedInternalKey k; |
| 23 | if (!ParseInternalKey(iter->key(), &k)) { |
| 24 | fprintf(stderr, "Corrupt '%s'\n", EscapeString(iter->key()).c_str()); |
| 25 | } else { |
| 26 | fprintf(stderr, "@ '%s'\n", k.DebugString().c_str()); |
| 27 | } |
| 28 | } |
| 29 | } |
| 30 | #endif |
| 31 | |
| 32 | namespace { |
nothing calls this directly
no test coverage detected