2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2014-11-13 20:39:30 +01: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.
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-09-24 01:34:04 +02:00
|
|
|
#include "util/db_options.h"
|
2014-11-13 20:39:30 +01:00
|
|
|
|
|
|
|
namespace rocksdb {
|
2016-09-24 01:34:04 +02:00
|
|
|
void DumpDBFileSummary(const ImmutableDBOptions& options,
|
|
|
|
const std::string& dbname);
|
2014-11-13 20:39:30 +01:00
|
|
|
} // namespace rocksdb
|