| 379 | } |
| 380 | |
| 381 | std::shared_ptr<Array> ArrayFromJSON(const std::shared_ptr<DataType>& type, |
| 382 | std::string_view json) { |
| 383 | EXPECT_OK_AND_ASSIGN(auto out, json::ArrayFromJSONString(type, json)); |
| 384 | return out; |
| 385 | } |
| 386 | |
| 387 | std::shared_ptr<Array> DictArrayFromJSON(const std::shared_ptr<DataType>& type, |
| 388 | std::string_view indices_json, |
no outgoing calls
no test coverage detected