| 82 | } |
| 83 | |
| 84 | std::shared_ptr<arrow::io::OutputStream> S3FileSystem::openWriteable(const Uri & uri) const { |
| 85 | std::shared_ptr<S3OutputStream> file; |
| 86 | this->pimpl->openWriteable(uri, &file); |
| 87 | return std::static_pointer_cast<arrow::io::OutputStream>(file); |
| 88 | } |
no outgoing calls