| 393 | } |
| 394 | |
| 395 | std::shared_ptr<Array> DictArrayFromJSON(const std::shared_ptr<DataType>& type, |
| 396 | std::string_view indices_json, |
| 397 | std::string_view dictionary_json) { |
| 398 | EXPECT_OK_AND_ASSIGN( |
| 399 | auto out, json::DictArrayFromJSONString(type, indices_json, dictionary_json)); |
| 400 | return out; |
| 401 | } |
| 402 | |
| 403 | std::shared_ptr<ChunkedArray> ChunkedArrayFromJSON(const std::shared_ptr<DataType>& type, |
| 404 | const std::vector<std::string>& json) { |
no outgoing calls
no test coverage detected