From 8dc6d8c74845538480e81b5e4995dbf626ce107a Mon Sep 17 00:00:00 2001 From: Zhichao Cao Date: Tue, 23 Mar 2021 15:11:13 -0700 Subject: [PATCH] Added append with checksum handoff API to hdfs (#8084) Summary: Added append with checksum handoff API to hdfs Pull Request resolved: https://github.com/facebook/rocksdb/pull/8084 Test Plan: make check Reviewed By: ajkr Differential Revision: D27237823 Pulled By: zhichao-cao fbshipit-source-id: 93b38db23b1811a6daa049afb89240089ec6f67c --- env/env_hdfs.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/env/env_hdfs.cc b/env/env_hdfs.cc index 3323eeb8a..77a14af9a 100644 --- a/env/env_hdfs.cc +++ b/env/env_hdfs.cc @@ -213,6 +213,8 @@ class HdfsWritableFile: public WritableFile { } } + using WritableFile::Append; + // If the file was successfully created, then this returns true. // Otherwise returns false. bool isValid() {