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 891ab83cc [GLUTEN-1632][CH]Daily Update Clickhouse Version (20240524) 
(#5857)
891ab83cc is described below

commit 891ab83cca70dfec4c4c700cf73febc64fea73c5
Author: Kyligence Git <[email protected]>
AuthorDate: Fri May 24 02:23:05 2024 -0500

    [GLUTEN-1632][CH]Daily Update Clickhouse Version (20240524) (#5857)
    
    * [GLUTEN-1632][CH]Daily Update Clickhouse Version (20240524)
    
    * Fix build due to https://github.com/ClickHouse/ClickHouse/pull/63058
    
    ---------
    
    Co-authored-by: kyligence-git <[email protected]>
    Co-authored-by: Chang Chen <[email protected]>
---
 cpp-ch/clickhouse.version                        | 4 ++--
 cpp-ch/local-engine/Storages/IO/NativeReader.cpp | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/cpp-ch/clickhouse.version b/cpp-ch/clickhouse.version
index 04bd6960e..1bc0454a1 100644
--- a/cpp-ch/clickhouse.version
+++ b/cpp-ch/clickhouse.version
@@ -1,3 +1,3 @@
 CH_ORG=Kyligence
-CH_BRANCH=rebase_ch/20240522
-CH_COMMIT=327f885e4bd
\ No newline at end of file
+CH_BRANCH=rebase_ch/20240524
+CH_COMMIT=b1a2a14bdd2
\ No newline at end of file
diff --git a/cpp-ch/local-engine/Storages/IO/NativeReader.cpp 
b/cpp-ch/local-engine/Storages/IO/NativeReader.cpp
index 30d8af593..48e6950e2 100644
--- a/cpp-ch/local-engine/Storages/IO/NativeReader.cpp
+++ b/cpp-ch/local-engine/Storages/IO/NativeReader.cpp
@@ -128,7 +128,7 @@ static void readNormalSimpleData(DB::ReadBuffer &in, 
DB::ColumnPtr & column, siz
 
     ISerialization::DeserializeBinaryBulkStatePtr state;
 
-    column_parse_util.serializer->deserializeBinaryBulkStatePrefix(settings, 
state);
+    column_parse_util.serializer->deserializeBinaryBulkStatePrefix(settings, 
state, nullptr);
     
column_parse_util.serializer->deserializeBinaryBulkWithMultipleStreams(column, 
rows, settings, state, nullptr);
 }
 
@@ -145,7 +145,7 @@ readNormalComplexData(DB::ReadBuffer & in, DB::ColumnPtr & 
column, size_t rows,
     ISerialization::DeserializeBinaryBulkStatePtr state;
 
     DB::ColumnPtr new_col = column->cloneResized(0);
-    column_parse_util.serializer->deserializeBinaryBulkStatePrefix(settings, 
state);
+    column_parse_util.serializer->deserializeBinaryBulkStatePrefix(settings, 
state ,nullptr);
     
column_parse_util.serializer->deserializeBinaryBulkWithMultipleStreams(new_col, 
rows, settings, state, nullptr);
     column->assumeMutable()->insertRangeFrom(*new_col, 0, new_col->size());
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to