| 56 | } |
| 57 | |
| 58 | void StringChunkData::resize(uint64_t newCapacity) { |
| 59 | ColumnChunkData::resize(newCapacity); |
| 60 | indexColumnChunk->resize(newCapacity); |
| 61 | } |
| 62 | |
| 63 | void StringChunkData::resizeWithoutPreserve(uint64_t newCapacity) { |
| 64 | ColumnChunkData::resizeWithoutPreserve(newCapacity); |
no test coverage detected