| 87 | } |
| 88 | |
| 89 | static void resizeMainBuffer(ArrowVector* vector, const LogicalType& type, int64_t capacity, |
| 90 | bool fallbackExtensionTypes) { |
| 91 | vector->data.resize(getArrowMainBufferSize(type, capacity, fallbackExtensionTypes)); |
| 92 | } |
| 93 | |
| 94 | static void resizeBLOBOverflow(ArrowVector* vector, int64_t capacity) { |
| 95 | vector->overflow.resize(capacity); |
no test coverage detected