| 493 | string_converter_() {} |
| 494 | |
| 495 | Status Decode(const uint8_t* data, uint32_t size, bool quoted, value_type* out) { |
| 496 | TrimWhiteSpace(&data, &size); |
| 497 | if (ARROW_PREDICT_FALSE(!string_converter_.Convert( |
| 498 | concrete_type_, reinterpret_cast<const char*>(data), size, out))) { |
| 499 | return GenericConversionError(type_, data, size); |
| 500 | } |
| 501 | return Status::OK(); |
| 502 | } |
| 503 | |
| 504 | protected: |
| 505 | const DurationType& concrete_type_; |
nothing calls this directly
no test coverage detected