2016-02-09 23:12:00 +00:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-15 23:03:42 +00: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 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
|
|
|
|
2020-02-20 20:07:53 +00:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2016-09-23 23:34:04 +00:00
|
|
|
void DumpDBFileSummary(const ImmutableDBOptions& options,
|
2020-06-15 17:45:03 +00:00
|
|
|
const std::string& dbname,
|
|
|
|
const std::string& session_id = "");
|
2020-02-20 20:07:53 +00:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|