aboutsummaryrefslogtreecommitdiff
path: root/src/leveldb/util/env.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/leveldb/util/env.cc')
-rw-r--r--src/leveldb/util/env.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/leveldb/util/env.cc b/src/leveldb/util/env.cc
index c2600e964a..c58a0821ef 100644
--- a/src/leveldb/util/env.cc
+++ b/src/leveldb/util/env.cc
@@ -9,6 +9,10 @@ namespace leveldb {
Env::~Env() {
}
+Status Env::NewAppendableFile(const std::string& fname, WritableFile** result) {
+ return Status::NotSupported("NewAppendableFile", fname);
+}
+
SequentialFile::~SequentialFile() {
}