https://github.com/facebook/rocksdb
Raw File
Tip revision: 7fae4515803ff3fc46e9f658265fae8e8279be08 authored by sdong on 31 October 2019, 23:39:02 UTC
Fix two odd assertions.
Tip revision: 7fae451
ldb.cc
// Copyright (c) 2012 Facebook. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "rocksdb/ldb_tool.h"

int main(int argc, char** argv) {
  leveldb::LDBTool tool;
  tool.Run(argc, argv);
  return 0;
}
back to top