https://github.com/facebook/rocksdb
Raw File
Tip revision: 444b3f4845dd01b0d127c4b420fdd3b50ad56682 authored by anand76 on 22 December 2022, 17:30:39 UTC
Add a unit test for PR 11049
Tip revision: 444b3f4
sst_dump.cc
//  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).
//
#ifndef ROCKSDB_LITE

#include "rocksdb/sst_dump_tool.h"

int main(int argc, char** argv) {
  ROCKSDB_NAMESPACE::SSTDumpTool tool;
  return tool.Run(argc, argv);
}
#else
#include <stdio.h>
int main(int /*argc*/, char** /*argv*/) {
  fprintf(stderr, "Not supported in lite mode.\n");
  return 1;
}
#endif  // ROCKSDB_LITE
back to top