summaryrefslogtreecommitdiff
path: root/utilities/blob_db/blob_db.cc
diff options
context:
space:
mode:
authorsdong <siying.d@fb.com>2020-02-20 12:07:53 -0800
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2020-02-20 12:09:57 -0800
commitfdf882ded218344c136c97daf76dfb59e4bc155f (patch)
tree00237d163251ff53a7fe8cb7fbd5d7462fbc9e32 /utilities/blob_db/blob_db.cc
parent4e33f1e1dc40be18f8233a913324b2978c6a46fa (diff)
Replace namespace name "rocksdb" with ROCKSDB_NAMESPACE (#6433)
Summary: When dynamically linking two binaries together, different builds of RocksDB from two sources might cause errors. To provide a tool for user to solve the problem, the RocksDB namespace is changed to a flag which can be overridden in build time. Pull Request resolved: https://github.com/facebook/rocksdb/pull/6433 Test Plan: Build release, all and jtest. Try to build with ROCKSDB_NAMESPACE with another flag. Differential Revision: D19977691 fbshipit-source-id: aa7f2d0972e1c31d75339ac48478f34f6cfcfb3e
Diffstat (limited to 'utilities/blob_db/blob_db.cc')
-rw-r--r--utilities/blob_db/blob_db.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/utilities/blob_db/blob_db.cc b/utilities/blob_db/blob_db.cc
index 7d922287a..f568ecd1a 100644
--- a/utilities/blob_db/blob_db.cc
+++ b/utilities/blob_db/blob_db.cc
@@ -10,7 +10,7 @@
#include <cinttypes>
#include "utilities/blob_db/blob_db_impl.h"
-namespace rocksdb {
+namespace ROCKSDB_NAMESPACE {
namespace blob_db {
Status BlobDB::Open(const Options& options, const BlobDBOptions& bdb_options,
@@ -98,5 +98,5 @@ void BlobDBOptions::Dump(Logger* log) const {
}
} // namespace blob_db
-} // namespace rocksdb
+} // namespace ROCKSDB_NAMESPACE
#endif