MCPcopy Create free account
hub / github.com/apache/arrow / ResetPageStatistics

Method ResetPageStatistics

cpp/src/parquet/column_writer.cc:1596–1605  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1594 }
1595
1596 void ResetPageStatistics() override {
1597 if (chunk_statistics_ != nullptr) {
1598 chunk_statistics_->Merge(*page_statistics_);
1599 page_statistics_->Reset();
1600 }
1601 if (page_size_statistics_ != nullptr) {
1602 chunk_size_statistics_->Merge(*page_size_statistics_);
1603 page_size_statistics_->Reset();
1604 }
1605 }
1606
1607 Type::type type() const override { return descr_->physical_type(); }
1608

Callers

nothing calls this directly

Calls 2

MergeMethod · 0.45
ResetMethod · 0.45

Tested by

no test coverage detected