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 3ca5f778f6 [GLUTEN-1632][CH]Daily Update Clickhouse Version (20241003) 
(#7407)
3ca5f778f6 is described below

commit 3ca5f778f6d13cfb10ac5a519e7a6853e5deae2f
Author: Kyligence Git <[email protected]>
AuthorDate: Thu Oct 3 11:01:45 2024 -0500

    [GLUTEN-1632][CH]Daily Update Clickhouse Version (20241003) (#7407)
    
    * [GLUTEN-1632][CH]Daily Update Clickhouse Version (20241003)
    
    * Fix Build due to https://github.com/ClickHouse/ClickHouse/pull/69875
    
    ---------
    
    Co-authored-by: kyligence-git <[email protected]>
    Co-authored-by: Chang Chen <[email protected]>
---
 cpp-ch/clickhouse.version                                      |  4 ++--
 .../Storages/Parquet/VectorizedParquetRecordReader.cpp         | 10 +---------
 .../Storages/Parquet/VectorizedParquetRecordReader.h           |  2 --
 3 files changed, 3 insertions(+), 13 deletions(-)

diff --git a/cpp-ch/clickhouse.version b/cpp-ch/clickhouse.version
index 4b86a99b17..716063cc5a 100644
--- a/cpp-ch/clickhouse.version
+++ b/cpp-ch/clickhouse.version
@@ -1,3 +1,3 @@
 CH_ORG=Kyligence
-CH_BRANCH=rebase_ch/20240928
-CH_COMMIT=348196b6011
\ No newline at end of file
+CH_BRANCH=rebase_ch/20241003
+CH_COMMIT=85b173cda94
\ No newline at end of file
diff --git 
a/cpp-ch/local-engine/Storages/Parquet/VectorizedParquetRecordReader.cpp 
b/cpp-ch/local-engine/Storages/Parquet/VectorizedParquetRecordReader.cpp
index 4f4e88aa76..8c9ac073a3 100644
--- a/cpp-ch/local-engine/Storages/Parquet/VectorizedParquetRecordReader.cpp
+++ b/cpp-ch/local-engine/Storages/Parquet/VectorizedParquetRecordReader.cpp
@@ -367,18 +367,10 @@ void VectorizedParquetBlockInputFormat::resetParser()
 {
     IInputFormat::resetParser();
     record_reader_.reset();
-    block_missing_values.clear();
-}
-
-const DB::BlockMissingValues & 
VectorizedParquetBlockInputFormat::getMissingValues() const
-{
-    return block_missing_values;
-}
+ }
 
 DB::Chunk VectorizedParquetBlockInputFormat::read()
 {
-    block_missing_values.clear();
-
     if (is_stopped != 0)
         return {};
 
diff --git 
a/cpp-ch/local-engine/Storages/Parquet/VectorizedParquetRecordReader.h 
b/cpp-ch/local-engine/Storages/Parquet/VectorizedParquetRecordReader.h
index b930df0cac..06f0e61225 100644
--- a/cpp-ch/local-engine/Storages/Parquet/VectorizedParquetRecordReader.h
+++ b/cpp-ch/local-engine/Storages/Parquet/VectorizedParquetRecordReader.h
@@ -230,7 +230,6 @@ public:
 class VectorizedParquetBlockInputFormat final : public DB::IInputFormat
 {
     std::atomic<int> is_stopped{0};
-    DB::BlockMissingValues block_missing_values;
     VectorizedParquetRecordReader record_reader_;
     ColumnIndexFilterPtr column_index_filter_;
 
@@ -242,7 +241,6 @@ public:
     void setColumnIndexFilter(const ColumnIndexFilterPtr & 
column_index_filter) { column_index_filter_ = column_index_filter; }
     String getName() const override { return 
"VectorizedParquetBlockInputFormat"; }
     void resetParser() override;
-    const DB::BlockMissingValues & getMissingValues() const override;
 
 private:
     DB::Chunk read() override;


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

Reply via email to