| 177 | } |
| 178 | |
| 179 | void StructChunkData::setToInMemory() { |
| 180 | ColumnChunkData::setToInMemory(); |
| 181 | for (const auto& child : childChunks) { |
| 182 | child->setToInMemory(); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | void StructChunkData::resize(uint64_t newCapacity) { |
| 187 | ColumnChunkData::resize(newCapacity); |
no test coverage detected