| 289 | Status Visit(const DataType&) { return NotImplemented(); } |
| 290 | |
| 291 | Status NotImplemented() { |
| 292 | return Status::NotImplemented("MakeBuilder: cannot construct builder for type ", |
| 293 | type->ToString()); |
| 294 | } |
| 295 | |
| 296 | Result<std::unique_ptr<ArrayBuilder>> ChildBuilder( |
| 297 | const std::shared_ptr<DataType>& type) { |
nothing calls this directly
no test coverage detected