| 61 | } |
| 62 | |
| 63 | void SizeStatistics::IncrementUnencodedByteArrayDataBytes(int64_t value) { |
| 64 | ARROW_CHECK(unencoded_byte_array_data_bytes.has_value()); |
| 65 | unencoded_byte_array_data_bytes = unencoded_byte_array_data_bytes.value() + value; |
| 66 | } |
| 67 | |
| 68 | void SizeStatistics::Validate(const ColumnDescriptor* descr) const { |
| 69 | auto validate_histogram = [](const std::vector<int64_t>& histogram, int16_t max_level, |