| 349 | } |
| 350 | |
| 351 | int64_t metadata_num_values() { |
| 352 | // Metadata accessor must be created lazily. |
| 353 | // This is because the ColumnChunkMetaData semantics dictate the metadata object is |
| 354 | // complete (no changes to the metadata buffer can be made after instantiation) |
| 355 | auto metadata_accessor = |
| 356 | ColumnChunkMetaData::Make(metadata_->contents(), this->descr_); |
| 357 | return metadata_accessor->num_values(); |
| 358 | } |
| 359 | |
| 360 | bool metadata_is_stats_set() { |
| 361 | // Metadata accessor must be created lazily. |
no test coverage detected