| 106 | } |
| 107 | |
| 108 | void TypedColumnBuffer::appendInt32(int32_t value) { |
| 109 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt32); |
| 110 | appendFixed(value); |
| 111 | } |
| 112 | |
| 113 | void TypedColumnBuffer::appendInt64(int64_t value) { |
| 114 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt64); |