2016-02-09 23:12:00 +00:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2014-11-13 19:39:30 +00:00
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
2017-04-28 00:50:56 +00:00
|
|
|
// This source code is also licensed under the GPLv2 license found in the
|
|
|
|
// COPYING file in the root directory of this source tree.
|
2014-11-13 19:39:30 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2017-04-06 02:02:00 +00:00
|
|
|
#include "options/db_options.h"
|
2014-11-13 19:39:30 +00:00
|
|
|
|
|
|
|
namespace rocksdb {
|
2016-09-23 23:34:04 +00:00
|
|
|
void DumpDBFileSummary(const ImmutableDBOptions& options,
|
|
|
|
const std::string& dbname);
|
2014-11-13 19:39:30 +00:00
|
|
|
} // namespace rocksdb
|