| 96 | // --------------------------------------------------------------------------- |
| 97 | |
| 98 | void TypedColumnBuffer::appendFloat32(float value) { |
| 99 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kFloat32); |
| 100 | appendFixed(value); |
| 101 | } |
| 102 | |
| 103 | void TypedColumnBuffer::appendFloat64(double value) { |
| 104 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kFloat64); |