Skip to content

Commit

Permalink
Merge branch 'main' into consistent-hash
Browse files Browse the repository at this point in the history
  • Loading branch information
yikf authored Dec 18, 2024
2 parents 23a585e + 6f3a453 commit 99f6a18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cpp-ch/clickhouse.version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
CH_ORG=Kyligence
CH_BRANCH=rebase_ch/20241213
CH_COMMIT=8539932ca13
CH_BRANCH=rebase_ch/20241218
CH_COMMIT=1e83b45a997
Original file line number Diff line number Diff line change
Expand Up @@ -429,8 +429,7 @@ class S3FileReadBufferBuilder : public ReadBufferBuilder
if (object_size > 0)
buffer_size = std::min(object_size, buffer_size);
auto async_reader
= std::make_unique<DB::AsynchronousBoundedReadBuffer>(std::move(s3_impl), pool_reader, read_settings, buffer_size);

= std::make_unique<DB::AsynchronousBoundedReadBuffer>(std::move(s3_impl), pool_reader, read_settings, buffer_size,read_settings.remote_read_min_bytes_for_seek);
if (read_settings.remote_fs_prefetch)
async_reader->prefetch(Priority{});

Expand Down

0 comments on commit 99f6a18

Please sign in to comment.