| 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 |