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

Function resizeListVector

src/common/arrow/arrow_row_batch.cpp:144–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142}
143
144static void resizeListVector(ArrowVector* vector, const LogicalType& type, int64_t capacity,
145 int64_t childCapacity, bool fallbackExtensionTypes) {
146 resizeGeneric(vector, type, capacity, fallbackExtensionTypes);
147 std::vector<LogicalType> typeVec;
148 typeVec.push_back(ListType::getChildType(type).copy());
149 resizeChildVectors(vector, typeVec, childCapacity, fallbackExtensionTypes);
150}
151
152static void resizeStructVector(ArrowVector* vector, const LogicalType& type, int64_t capacity,
153 bool fallbackExtensionTypes) {

Callers 1

resizeVectorFunction · 0.85

Calls 5

resizeGenericFunction · 0.85
getChildTypeFunction · 0.85
resizeChildVectorsFunction · 0.85
push_backMethod · 0.45
copyMethod · 0.45

Tested by

no test coverage detected