| 130 | |
| 131 | namespace { |
| 132 | ColumnChunkMetadata getConstantFloatMetadata(PhysicalTypeID physicalType, uint64_t numValues, |
| 133 | StorageValue min, StorageValue max) { |
| 134 | return {INVALID_PAGE_IDX, 0, numValues, |
| 135 | CompressionMetadata(min, max, CompressionType::CONSTANT, alp::state{}, StorageValue{0}, |
| 136 | StorageValue{0}, physicalType)}; |
| 137 | } |
| 138 | |
| 139 | template<std::floating_point T> |
| 140 | alp::state getAlpMetadata(const T* buffer, uint64_t numValues) { |
no test coverage detected