| 142 | } |
| 143 | |
| 144 | static 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 | |
| 152 | static void resizeStructVector(ArrowVector* vector, const LogicalType& type, int64_t capacity, |
| 153 | bool fallbackExtensionTypes) { |
no test coverage detected