| 192 | } |
| 193 | |
| 194 | Status ExampleIntBatches(RecordBatchVector* out) { |
| 195 | std::shared_ptr<RecordBatch> batch; |
| 196 | for (int i = 0; i < 5; ++i) { |
| 197 | // Make all different sizes, use different random seed |
| 198 | RETURN_NOT_OK(ipc::test::MakeIntBatchSized(10 + i, &batch, i)); |
| 199 | out->push_back(batch); |
| 200 | } |
| 201 | return Status::OK(); |
| 202 | } |
| 203 | |
| 204 | Status ExampleFloatBatches(RecordBatchVector* out) { |
| 205 | std::shared_ptr<RecordBatch> batch; |
no test coverage detected