| 393 | } |
| 394 | |
| 395 | std::shared_ptr<ChunkedArray> ChunkedArrayFromJSON(const std::shared_ptr<DataType>& type, |
| 396 | const std::vector<std::string>& json) { |
| 397 | EXPECT_OK_AND_ASSIGN(auto out, json::ChunkedArrayFromJSONString(type, json)); |
| 398 | return out; |
| 399 | } |
| 400 | |
| 401 | std::shared_ptr<RecordBatch> RecordBatchFromJSON(const std::shared_ptr<Schema>& schema, |
| 402 | std::string_view json) { |
no outgoing calls
no test coverage detected