| 327 | } |
| 328 | |
| 329 | Status MakeBuilderExactIndex(MemoryPool* pool, const std::shared_ptr<DataType>& type, |
| 330 | std::unique_ptr<ArrayBuilder>* out) { |
| 331 | MakeBuilderImpl impl{pool, type, /*exact_index_type=*/true, /*out=*/nullptr}; |
| 332 | RETURN_NOT_OK(VisitTypeInline(*type, &impl)); |
| 333 | *out = std::move(impl.out); |
| 334 | return Status::OK(); |
| 335 | } |
| 336 | |
| 337 | Status MakeDictionaryBuilder(MemoryPool* pool, const std::shared_ptr<DataType>& type, |
| 338 | const std::shared_ptr<Array>& dictionary, |
nothing calls this directly
no test coverage detected