| 216 | } |
| 217 | |
| 218 | void TypedColumnBuffer::appendInt32Bulk(Span<const int32_t> data) { |
| 219 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt32); |
| 220 | appendFixedBulk(data); |
| 221 | } |
| 222 | |
| 223 | void TypedColumnBuffer::appendInt64Bulk(Span<const int64_t> data) { |
| 224 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kInt64); |