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

Method makeRowVector

bolt/vector/tests/utils/VectorTestBase.h:120–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118 }
119
120 RowVectorPtr makeRowVector(
121 const std::vector<std::string>& childNames,
122 const std::vector<VectorPtr>& children,
123 std::function<bool(vector_size_t /*row*/)> isNullAt = nullptr) {
124 auto rowVector = vectorMaker_.rowVector(childNames, children);
125 if (isNullAt) {
126 setNulls(rowVector, isNullAt);
127 }
128 return rowVector;
129 }
130
131 RowVectorPtr makeRowVector(
132 const std::vector<VectorPtr>& children,

Callers 2

testSubfieldPruningMethod · 0.45
TYPED_TESTFunction · 0.45

Calls 3

rowVectorMethod · 0.80
fuzzRowMethod · 0.80
poolFunction · 0.70

Tested by

no test coverage detected