| 417 | } |
| 418 | |
| 419 | std::shared_ptr<Scalar> ScalarFromJSON(const std::shared_ptr<DataType>& type, |
| 420 | std::string_view json) { |
| 421 | EXPECT_OK_AND_ASSIGN(auto out, json::ScalarFromJSONString(type, json)); |
| 422 | return out; |
| 423 | } |
| 424 | |
| 425 | std::shared_ptr<Scalar> DictScalarFromJSON(const std::shared_ptr<DataType>& type, |
| 426 | std::string_view index_json, |
no outgoing calls
no test coverage detected