| 133 | } |
| 134 | |
| 135 | void ChunkedNodeGroup::truncate(const offset_t numRows_) { |
| 136 | DASSERT(numRows >= numRows_); |
| 137 | for (const auto& chunk : chunks) { |
| 138 | chunk->truncate(numRows_); |
| 139 | } |
| 140 | numRows = numRows_; |
| 141 | } |
| 142 | |
| 143 | void InMemChunkedNodeGroup::setNumRows(const offset_t numRows_) { |
| 144 | for (const auto& chunk : chunks) { |
no outgoing calls
no test coverage detected