| 409 | } |
| 410 | |
| 411 | std::shared_ptr<Scalar> ScalarFromJSON(const std::shared_ptr<DataType>& type, |
| 412 | std::string_view json) { |
| 413 | EXPECT_OK_AND_ASSIGN(auto out, json::ScalarFromJSONString(type, json)); |
| 414 | return out; |
| 415 | } |
| 416 | |
| 417 | std::shared_ptr<Scalar> DictScalarFromJSON(const std::shared_ptr<DataType>& type, |
| 418 | std::string_view index_json, |
no outgoing calls
no test coverage detected