| 423 | } |
| 424 | |
| 425 | std::shared_ptr<Scalar> DictScalarFromJSON(const std::shared_ptr<DataType>& type, |
| 426 | std::string_view index_json, |
| 427 | std::string_view dictionary_json) { |
| 428 | EXPECT_OK_AND_ASSIGN(auto out, |
| 429 | json::DictScalarFromJSONString(type, index_json, dictionary_json)); |
| 430 | return out; |
| 431 | } |
| 432 | |
| 433 | std::shared_ptr<Table> TableFromJSON(const std::shared_ptr<Schema>& schema, |
| 434 | const std::vector<std::string>& json) { |
no outgoing calls
no test coverage detected