diff --git a/util/ldb_cmd.cc b/util/ldb_cmd.cc index 60c3f9b43..acbef77ec 100644 --- a/util/ldb_cmd.cc +++ b/util/ldb_cmd.cc @@ -390,10 +390,10 @@ void WALDumper::DoCommand() { Slice record; std::stringstream row; if (print_header_) { - std::cout<<"Sequence,Count,ByteSize\n"; + std::cout<<"Sequence,Count,ByteSize,Physical Offset\n"; } while(reader.ReadRecord(&record, &scratch)) { - row.clear(); + row.str(""); if (record.size() < 12) { reporter.Corruption( record.size(), Status::Corruption("log record too small")); @@ -401,7 +401,8 @@ void WALDumper::DoCommand() { WriteBatchInternal::SetContents(&batch, record); row<