| 231 | } |
| 232 | |
| 233 | void TypedColumnBuffer::appendBoolBulk(Span<const uint8_t> data) { |
| 234 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kBool); |
| 235 | // Bool stored as uint8_t per element (1 byte per bool, not packed) |
| 236 | appendFixedBulk(data); |
| 237 | } |
| 238 | |
| 239 | void TypedColumnBuffer::appendStringsBulk(Span<const uint32_t> offsets, Span<const char> data) { |
| 240 | assert(storageKindOf(descriptor_.logical_type) == StorageKind::kString); |