| 1063 | }; |
| 1064 | |
| 1065 | Result<std::shared_ptr<Scalar>> Scalar::Parse(const std::shared_ptr<DataType>& type, |
| 1066 | std::string_view s) { |
| 1067 | return ScalarParseImpl{type, s}.Finish(); |
| 1068 | } |
| 1069 | |
| 1070 | namespace internal { |
| 1071 | Status CheckBufferLength(const FixedSizeBinaryType* t, const std::shared_ptr<Buffer>* b) { |
no test coverage detected