| 96 | } |
| 97 | |
| 98 | static void resizeUnionOverflow(ArrowVector* vector, int64_t capacity) { |
| 99 | vector->overflow.resize(capacity * sizeof(int32_t)); |
| 100 | } |
| 101 | |
| 102 | static void resizeChildVectors(ArrowVector* vector, const std::vector<LogicalType>& childTypes, |
| 103 | int64_t childCapacity, bool fallbackExtensionTypes) { |
no test coverage detected