https://github.com/facebook/rocksdb
Raw File
Tip revision: f48aa1c3084700bc72b73ee36f027e428f0dda86 authored by Levi Tamasi on 10 January 2020, 17:58:14 UTC
Bump up version to 6.5.3
Tip revision: f48aa1c
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