| 133 | } |
| 134 | |
| 135 | static void resizeFixedListVector(ArrowVector* vector, const LogicalType& type, int64_t capacity, |
| 136 | bool fallbackExtensionTypes) { |
| 137 | resizeGeneric(vector, type, capacity, fallbackExtensionTypes); |
| 138 | std::vector<LogicalType> typeVec; |
| 139 | typeVec.push_back(ArrayType::getChildType(type).copy()); |
| 140 | resizeChildVectors(vector, typeVec, vector->capacity * ArrayType::getNumElements(type), |
| 141 | fallbackExtensionTypes); |
| 142 | } |
| 143 | |
| 144 | static void resizeListVector(ArrowVector* vector, const LogicalType& type, int64_t capacity, |
| 145 | int64_t childCapacity, bool fallbackExtensionTypes) { |
no test coverage detected