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

Method Make

cpp/src/arrow/filesystem/s3fs.cc:3026–3033  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3024S3FileSystem::~S3FileSystem() {}
3025
3026Result<std::shared_ptr<S3FileSystem>> S3FileSystem::Make(
3027 const S3Options& options, const io::IOContext& io_context) {
3028 RETURN_NOT_OK(CheckS3Initialized());
3029
3030 std::shared_ptr<S3FileSystem> ptr(new S3FileSystem(options, io_context));
3031 RETURN_NOT_OK(ptr->impl_->Init());
3032 return ptr;
3033}
3034
3035bool S3FileSystem::Equals(const FileSystem& other) const {
3036 if (this == &other) {

Callers

nothing calls this directly

Calls 2

CheckS3InitializedFunction · 0.85
InitMethod · 0.45

Tested by

no test coverage detected