| 124 | } |
| 125 | |
| 126 | void ChunkedNodeGroup::resetVersionAndUpdateInfo() { |
| 127 | if (versionInfo) { |
| 128 | versionInfo.reset(); |
| 129 | } |
| 130 | for (const auto& chunk : chunks) { |
| 131 | chunk->resetUpdateInfo(); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | void ChunkedNodeGroup::truncate(const offset_t numRows_) { |
| 136 | DASSERT(numRows >= numRows_); |
no test coverage detected