https://github.com/facebook/rocksdb
Raw File
Tip revision: fcf3d75f3f022a6a55ff1222d6b06f8518d38c7c authored by Levi Tamasi on 10 December 2021, 22:48:55 UTC
Update HISTORY.md for PR 9273 (#9282)
Tip revision: fcf3d75
ldb.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/ldb_tool.h"

int main(int argc, char** argv) {
  ROCKSDB_NAMESPACE::LDBTool tool;
  tool.Run(argc, argv);
  return 0;
}
#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