| 160 | Status Visit(const DataType& value_type) { return NotImplemented(value_type); } |
| 161 | Status Visit(const HalfFloatType& value_type) { return NotImplemented(value_type); } |
| 162 | Status NotImplemented(const DataType& value_type) { |
| 163 | return Status::NotImplemented( |
| 164 | "MakeBuilder: cannot construct builder for dictionaries with value type ", |
| 165 | value_type); |
| 166 | } |
| 167 | |
| 168 | template <typename ValueType> |
| 169 | Status CreateFor() { |
nothing calls this directly
no test coverage detected