| 116 | } |
| 117 | |
| 118 | void TypedColumnBuffer::appendUint64(uint64_t value) { |
| 119 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kUint64); |
| 120 | appendFixed(value); |
| 121 | } |
| 122 | |
| 123 | void TypedColumnBuffer::appendBool(bool value) { |
| 124 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kBool); |