| 292 | } |
| 293 | |
| 294 | void ColumnChunkData::append(ValueVector* vector, const SelectionView& selView) { |
| 295 | DASSERT(vector->dataType.getPhysicalType() == dataType.getPhysicalType()); |
| 296 | copyVectorToBuffer(vector, numValues, selView); |
| 297 | numValues += selView.getSelSize(); |
| 298 | updateStats(vector, selView); |
| 299 | } |
| 300 | |
| 301 | void ColumnChunkData::append(const ColumnChunkData* other, offset_t startPosInOtherChunk, |
| 302 | uint32_t numValuesToAppend) { |
no test coverage detected