| 51 | } |
| 52 | |
| 53 | void JoinHashTable::appendVector(ValueVector* vector, |
| 54 | const std::vector<BlockAppendingInfo>& appendInfos, ft_col_idx_t colIdx) { |
| 55 | auto numAppendedTuples = 0ul; |
| 56 | for (auto& blockAppendInfo : appendInfos) { |
| 57 | factorizedTable->copyVectorToColumn(*vector, blockAppendInfo, numAppendedTuples, colIdx); |
| 58 | numAppendedTuples += blockAppendInfo.numTuplesToAppend; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | static void sortSelectedPos(ValueVector* nodeIDVector) { |
| 63 | auto& selVector = nodeIDVector->state->getSelVectorUnsafe(); |
nothing calls this directly
no test coverage detected