2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// 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).
|
2014-11-13 20:39:30 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "options/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
|