github.com/petermattis/pebble@v0.0.0-20190905164901-ab51a2166067/cmd/pebble/rocksdb_disabled.go (about)

     1  // Copyright 2019 The LevelDB-Go and Pebble Authors. All rights reserved. Use
     2  // of this source code is governed by a BSD-style license that can be found in
     3  // the LICENSE file.
     4  
     5  // +build !rocksdb
     6  
     7  package main
     8  
     9  import "log"
    10  
    11  func newRocksDB(dir string) DB {
    12  	log.Fatalf("pebble not compiled with RocksDB support: recompile with \"-tags rocksdb\"\n")
    13  	return nil
    14  }