]> git.proxmox.com Git - ceph.git/blob - ceph/src/rocksdb/tools/sst_dump.cc
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / rocksdb / tools / sst_dump.cc
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 #ifndef ROCKSDB_LITE
7
8 #include "rocksdb/sst_dump_tool.h"
9
10 int main(int argc, char** argv) {
11 rocksdb::SSTDumpTool tool;
12 tool.Run(argc, argv);
13 return 0;
14 }
15 #else
16 #include <stdio.h>
17 int main(int /*argc*/, char** /*argv*/) {
18 fprintf(stderr, "Not supported in lite mode.\n");
19 return 1;
20 }
21 #endif // ROCKSDB_LITE