| 101 | } |
| 102 | |
| 103 | void TypedColumnBuffer::appendFloat64(double value) { |
| 104 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kFloat64); |
| 105 | appendFixed(value); |
| 106 | } |
| 107 | |
| 108 | void TypedColumnBuffer::appendInt32(int32_t value) { |
| 109 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt32); |