| 222 | } |
| 223 | |
| 224 | Status ExampleNestedBatches(RecordBatchVector* out) { |
| 225 | std::shared_ptr<RecordBatch> batch; |
| 226 | for (int i = 0; i < 3; ++i) { |
| 227 | RETURN_NOT_OK(ipc::test::MakeListRecordBatch(&batch)); |
| 228 | out->push_back(batch); |
| 229 | } |
| 230 | return Status::OK(); |
| 231 | } |
| 232 | |
| 233 | Status ExampleLargeBatches(RecordBatchVector* out) { |
| 234 | const auto array_length = 32768; |
no test coverage detected