summaryrefslogtreecommitdiff
path: root/db/log_reader.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 /db/log_reader.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 'db/log_reader.cc')
-rw-r--r--db/log_reader.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/log_reader.cc b/db/log_reader.cc
index 3a71cbc42..c60a814b9 100644
--- a/db/log_reader.cc
+++ b/db/log_reader.cc
@@ -17,7 +17,7 @@
#include "util/crc32c.h"
#include "util/util.h"
-namespace rocksdb {
+namespace ROCKSDB_NAMESPACE {
namespace log {
Reader::Reporter::~Reporter() {
@@ -621,4 +621,4 @@ bool FragmentBufferedReader::TryReadFragment(
}
} // namespace log
-} // namespace rocksdb
+} // namespace ROCKSDB_NAMESPACE