Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteYue committed Jul 31, 2024
1 parent 6db5c2f commit 7374818
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion be/src/io/fs/s3_file_write_bufferpool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ struct S3FileBuffer::PartData {
~PartData() = default;
};

S3FileBuffer::S3FileBuffer(ThreadPool* pool) : _thread_pool(pool) {}
S3FileBuffer::S3FileBuffer(ThreadPool* pool)
: _inner_data(std::make_unique<S3FileBuffer::PartData>()), _thread_pool(pool) {}

S3FileBuffer::~S3FileBuffer() = default;

Expand Down

0 comments on commit 7374818

Please sign in to comment.