This is an automated email from the ASF dual-hosted git repository.
changchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new ad53b2192b [GLUTEN-1632][CH]Daily Update Clickhouse Version (20250318)
(#9043)
ad53b2192b is described below
commit ad53b2192bc4fb652914ecbb07383fc011fbab32
Author: Kyligence Git <[email protected]>
AuthorDate: Tue Mar 18 07:05:48 2025 -0500
[GLUTEN-1632][CH]Daily Update Clickhouse Version (20250318) (#9043)
* [GLUTEN-1632][CH]Daily Update Clickhouse Version (20250318)
* Fix build due to https://github.com/ClickHouse/ClickHouse/pull/77650
---------
Co-authored-by: kyligence-git <[email protected]>
Co-authored-by: Chang Chen <[email protected]>
---
cpp-ch/clickhouse.version | 4 ++--
cpp-ch/local-engine/Storages/SubstraitSource/ReadBufferBuilder.cpp | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/cpp-ch/clickhouse.version b/cpp-ch/clickhouse.version
index 1dbe7f3966..16bbab35ae 100644
--- a/cpp-ch/clickhouse.version
+++ b/cpp-ch/clickhouse.version
@@ -1,3 +1,3 @@
CH_ORG=Kyligence
-CH_BRANCH=rebase_ch/20250315
-CH_COMMIT=c8a8f9e6808
+CH_BRANCH=rebase_ch/20250318
+CH_COMMIT=8cb1de3c33d
diff --git a/cpp-ch/local-engine/Storages/SubstraitSource/ReadBufferBuilder.cpp
b/cpp-ch/local-engine/Storages/SubstraitSource/ReadBufferBuilder.cpp
index 71d1d3518f..51098b57a3 100644
--- a/cpp-ch/local-engine/Storages/SubstraitSource/ReadBufferBuilder.cpp
+++ b/cpp-ch/local-engine/Storages/SubstraitSource/ReadBufferBuilder.cpp
@@ -352,7 +352,7 @@ public:
if (*file_size > 0)
buffer_size = std::min(*file_size, buffer_size);
auto cache_hdfs_read =
std::make_unique<DB::ReadBufferFromRemoteFSGather>(
- std::move(cache_creator), stored_objects, read_settings,
nullptr, /* use_external_buffer */ false, buffer_size);
+ std::move(cache_creator), stored_objects, read_settings, /*
use_external_buffer */ false, buffer_size);
read_buffer = std::move(cache_hdfs_read);
}
@@ -436,7 +436,7 @@ public:
DB::StoredObjects stored_objects{DB::StoredObject{pathKey, "",
object_size}};
auto s3_impl = std::make_unique<DB::ReadBufferFromRemoteFSGather>(
- std::move(cache_creator), stored_objects, read_settings, /*
cache_log */ nullptr, /* use_external_buffer */ true, 0);
+ std::move(cache_creator), stored_objects, read_settings, /*
use_external_buffer */ true, 0);
auto & pool_reader =
context->getThreadPoolReader(DB::FilesystemReaderType::ASYNCHRONOUS_REMOTE_FS_READER);
size_t buffer_size =
std::max<size_t>(read_settings.remote_fs_buffer_size, DBMS_DEFAULT_BUFFER_SIZE);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]