| 111 | } |
| 112 | |
| 113 | void TypedColumnBuffer::appendInt64(int64_t value) { |
| 114 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt64); |
| 115 | appendFixed(value); |
| 116 | } |
| 117 | |
| 118 | void TypedColumnBuffer::appendUint64(uint64_t value) { |
| 119 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kUint64); |