| 657 | } |
| 658 | |
| 659 | void InMemChunkedNodeGroup::resizeChunks(const uint64_t newSize) { |
| 660 | if (newSize <= capacity) { |
| 661 | return; |
| 662 | } |
| 663 | for (auto& chunk : chunks) { |
| 664 | chunk->resize(newSize); |
| 665 | } |
| 666 | capacity = newSize; |
| 667 | } |
| 668 | |
| 669 | uint64_t InMemChunkedNodeGroup::append(const std::vector<ValueVector*>& columnVectors, |
| 670 | row_idx_t startRowInVectors, uint64_t numValuesToAppend) { |
no test coverage detected