| 221 | } |
| 222 | |
| 223 | void TypedColumnBuffer::appendInt64Bulk(Span<const int64_t> data) { |
| 224 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt64); |
| 225 | appendFixedBulk(data); |
| 226 | } |
| 227 | |
| 228 | void TypedColumnBuffer::appendUint64Bulk(Span<const uint64_t> data) { |
| 229 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kUint64); |