MCPcopy Create free account
hub / github.com/bytedance/bolt / appendToChildren

Method appendToChildren

bolt/vector/ComplexVector.cpp:163–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161}
162
163void RowVector::appendToChildren(
164 const RowVector* source,
165 vector_size_t sourceIndex,
166 vector_size_t count,
167 vector_size_t index) {
168 for (int32_t i = 0; i < children_.size(); ++i) {
169 auto& child = children_[i];
170 child->copy(source->childAt(i)->loadedVector(), index, sourceIndex, count);
171 }
172}
173
174void RowVector::copy(
175 const BaseVector* source,

Callers

nothing calls this directly

Calls 4

childAtMethod · 0.80
sizeMethod · 0.45
copyMethod · 0.45
loadedVectorMethod · 0.45

Tested by

no test coverage detected