| 385 | } |
| 386 | |
| 387 | std::shared_ptr<Array> DictArrayFromJSON(const std::shared_ptr<DataType>& type, |
| 388 | std::string_view indices_json, |
| 389 | std::string_view dictionary_json) { |
| 390 | EXPECT_OK_AND_ASSIGN( |
| 391 | auto out, json::DictArrayFromJSONString(type, indices_json, dictionary_json)); |
| 392 | return out; |
| 393 | } |
| 394 | |
| 395 | std::shared_ptr<ChunkedArray> ChunkedArrayFromJSON(const std::shared_ptr<DataType>& type, |
| 396 | const std::vector<std::string>& json) { |
no outgoing calls
no test coverage detected