Skip to content

Commit

Permalink
[GLUTEN-1632][CH]Daily Update Clickhouse Version (20241003) (#7407)
Browse files Browse the repository at this point in the history
* [GLUTEN-1632][CH]Daily Update Clickhouse Version (20241003)

* Fix Build due to ClickHouse/ClickHouse#69875

---------

Co-authored-by: kyligence-git <[email protected]>
Co-authored-by: Chang Chen <[email protected]>
  • Loading branch information
3 people authored Oct 3, 2024
1 parent fa8e8e9 commit 3ca5f77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 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/20240928
CH_COMMIT=348196b6011
CH_BRANCH=rebase_ch/20241003
CH_COMMIT=85b173cda94
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ class VectorizedParquetRecordReader
class VectorizedParquetBlockInputFormat final : public DB::IInputFormat
{
std::atomic<int> is_stopped{0};
DB::BlockMissingValues block_missing_values;
VectorizedParquetRecordReader record_reader_;
ColumnIndexFilterPtr column_index_filter_;

Expand All @@ -242,7 +241,6 @@ class VectorizedParquetBlockInputFormat final : public DB::IInputFormat
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;
Expand Down

0 comments on commit 3ca5f77

Please sign in to comment.