MCPcopy Create free account
hub / github.com/apache/arrow / Copy

Method Copy

cpp/src/arrow/io/hdfs.cc:556–560  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

554 }
555
556 Status Copy(const std::string& src, const std::string& dst) {
557 int ret = driver_->Copy(fs_, src.c_str(), fs_, dst.c_str());
558 CHECK_FAILURE(ret, "Rename");
559 return Status::OK();
560 }
561
562 Status Move(const std::string& src, const std::string& dst) {
563 int ret = driver_->Move(fs_, src.c_str(), fs_, dst.c_str());

Callers

nothing calls this directly

Calls 2

OKFunction · 0.50
CopyMethod · 0.45

Tested by

no test coverage detected