| 92 | } |
| 93 | |
| 94 | void ListChunkData::setOffsetChunkValue(offset_t val, offset_t pos) { |
| 95 | offsetColumnChunk->setValue(val, pos); |
| 96 | |
| 97 | // we will keep numValues in the main column synchronized |
| 98 | numValues = offsetColumnChunk->getNumValues(); |
| 99 | } |
| 100 | |
| 101 | void ListChunkData::append(const ColumnChunkData* other, offset_t startPosInOtherChunk, |
| 102 | uint32_t numValuesToAppend) { |
no test coverage detected