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