MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / appendVector

Method appendVector

src/processor/operator/hash_join/join_hash_table.cpp:53–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51}
52
53void 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
62static void sortSelectedPos(ValueVector* nodeIDVector) {
63 auto& selVector = nodeIDVector->state->getSelVectorUnsafe();

Callers

nothing calls this directly

Calls 1

copyVectorToColumnMethod · 0.80

Tested by

no test coverage detected