convenience_impl.h 709 B

123456789101112131415
  1. // Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
  2. // This source code is licensed under both the GPLv2 (found in the
  3. // COPYING file in the root directory) and Apache 2.0 License
  4. // (found in the LICENSE.Apache file in the root directory).
  5. #pragma once
  6. #include "rocksdb/db.h"
  7. namespace ROCKSDB_NAMESPACE {
  8. Status VerifySstFileChecksumInternal(const Options& options,
  9. const EnvOptions& env_options,
  10. const ReadOptions& read_options,
  11. const std::string& file_path,
  12. const SequenceNumber& largest_seqno = 0);
  13. } // namespace ROCKSDB_NAMESPACE