| 245 | } |
| 246 | |
| 247 | void TopicChunkBuilder::appendColumnStrings( |
| 248 | std::size_t col_index, Span<const uint32_t> offsets, Span<const char> data) { |
| 249 | PJ_ASSERT(col_index < columns_.size(), "col_index out of bounds"); |
| 250 | columns_[col_index].appendStringsBulk(offsets, data); |
| 251 | } |
| 252 | |
| 253 | void TopicChunkBuilder::appendColumnValidity(std::size_t col_index, BitSpan validity) { |
| 254 | PJ_ASSERT(col_index < columns_.size(), "col_index out of bounds"); |