Browse Source

rm redundant code: SetNextFile has already been called before in this function

main
Eric Wang 3 years ago
parent
commit
42d00a80cc
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      db/version_set.cc

+ 0
- 1
db/version_set.cc View File

@ -806,7 +806,6 @@ Status VersionSet::LogAndApply(VersionEdit* edit, port::Mutex* mu) {
// first call to LogAndApply (when opening the database).
assert(descriptor_file_ == nullptr);
new_manifest_file = DescriptorFileName(dbname_, manifest_file_number_);
edit->SetNextFile(next_file_number_);
s = env_->NewWritableFile(new_manifest_file, &descriptor_file_);
if (s.ok()) {
descriptor_log_ = new log::Writer(descriptor_file_);

Loading…
Cancel
Save