| 167 | } |
| 168 | |
| 169 | void ListChunkData::appendNullList() { |
| 170 | offset_t nextListOffsetInChunk = dataColumnChunk->getNumValues(); |
| 171 | const offset_t appendPosition = numValues; |
| 172 | sizeColumnChunk->setValue<list_size_t>(0, appendPosition); |
| 173 | setOffsetChunkValue(nextListOffsetInChunk, appendPosition); |
| 174 | nullData->setNull(appendPosition, true); |
| 175 | } |
| 176 | |
| 177 | void ListChunkData::scan(ValueVector& output, offset_t offset, length_t length, |
| 178 | sel_t posInOutputVector) const { |
no test coverage detected