| 401 | } |
| 402 | |
| 403 | std::shared_ptr<ChunkedArray> ChunkedArrayFromJSON(const std::shared_ptr<DataType>& type, |
| 404 | const std::vector<std::string>& json) { |
| 405 | EXPECT_OK_AND_ASSIGN(auto out, json::ChunkedArrayFromJSONString(type, json)); |
| 406 | return out; |
| 407 | } |
| 408 | |
| 409 | std::shared_ptr<RecordBatch> RecordBatchFromJSON(const std::shared_ptr<Schema>& schema, |
| 410 | std::string_view json) { |
no outgoing calls
no test coverage detected