sst_dump.cc 408 B

123456789101112
  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. //
  6. #include "rocksdb/sst_dump_tool.h"
  7. int main(int argc, char** argv) {
  8. ROCKSDB_NAMESPACE::SSTDumpTool tool;
  9. return tool.Run(argc, argv);
  10. }