| 180 | } |
| 181 | |
| 182 | static void resizeInternalIDVector(ArrowVector* vector, const LogicalType& type, int64_t capacity, |
| 183 | bool fallbackExtensionTypes) { |
| 184 | resizeGeneric(vector, type, capacity, fallbackExtensionTypes); |
| 185 | std::vector<LogicalType> typeVec; |
| 186 | typeVec.push_back(LogicalType::INT64()); |
| 187 | typeVec.push_back(LogicalType::INT64()); |
| 188 | resizeChildVectors(vector, typeVec, vector->capacity, fallbackExtensionTypes); |
| 189 | } |
| 190 | |
| 191 | static void resizeVector(ArrowVector* vector, const LogicalType& type, std::int64_t capacity, |
| 192 | bool fallbackExtensionTypes) { |
no test coverage detected