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