summaryrefslogtreecommitdiff
path: root/utilities/checkpoint/checkpoint_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'utilities/checkpoint/checkpoint_impl.cc')
-rw-r--r--utilities/checkpoint/checkpoint_impl.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/utilities/checkpoint/checkpoint_impl.cc b/utilities/checkpoint/checkpoint_impl.cc
index 33cf9ae1d..98e609609 100644
--- a/utilities/checkpoint/checkpoint_impl.cc
+++ b/utilities/checkpoint/checkpoint_impl.cc
@@ -27,7 +27,7 @@
#include "rocksdb/utilities/checkpoint.h"
#include "test_util/sync_point.h"
-namespace rocksdb {
+namespace ROCKSDB_NAMESPACE {
Status Checkpoint::Create(DB* db, Checkpoint** checkpoint_ptr) {
*checkpoint_ptr = new CheckpointImpl(db);
@@ -363,7 +363,7 @@ Status CheckpointImpl::ExportColumnFamily(
s = db_->GetEnv()->CreateDir(tmp_export_dir);
if (s.ok()) {
- s = db_->Flush(rocksdb::FlushOptions(), handle);
+ s = db_->Flush(ROCKSDB_NAMESPACE::FlushOptions(), handle);
}
ColumnFamilyMetaData db_metadata;
@@ -511,6 +511,6 @@ Status CheckpointImpl::ExportFilesInMetaData(
return s;
}
-} // namespace rocksdb
+} // namespace ROCKSDB_NAMESPACE
#endif // ROCKSDB_LITE