Revision 152f8a8ffe00358cae465738eac7b9a4de0b689e authored by Cheng Chang on 14 February 2020, 16:24:09 UTC, committed by Facebook Github Bot on 14 February 2020, 16:26:23 UTC
Summary:
`index` can be replaced by  `iter`, saving the computation of `index++`.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/6406

Test Plan: make check

Differential Revision: D19905056

Pulled By: cheng-chang

fbshipit-source-id: add4638959c0d2e4e77a11f3fa04ffabaf0de790
1 parent 4034e28
Raw File
db_info_dumper.h
//  Copyright (c) 2011-present, Facebook, Inc.  All rights reserved.
//  This source code is licensed under both the GPLv2 (found in the
//  COPYING file in the root directory) and Apache 2.0 License
//  (found in the LICENSE.Apache file in the root directory).
#pragma once

#include <string>

#include "options/db_options.h"

namespace rocksdb {
void DumpDBFileSummary(const ImmutableDBOptions& options,
                       const std::string& dbname);
}  // namespace rocksdb
back to top