| 202 | } |
| 203 | |
| 204 | Status ExampleFloatBatches(RecordBatchVector* out) { |
| 205 | std::shared_ptr<RecordBatch> batch; |
| 206 | for (int i = 0; i < 5; ++i) { |
| 207 | // Make all different sizes, use different random seed |
| 208 | RETURN_NOT_OK(ipc::test::MakeFloatBatchSized(10 + i, &batch, i)); |
| 209 | out->push_back(batch); |
| 210 | } |
| 211 | return Status::OK(); |
| 212 | } |
| 213 | |
| 214 | Status ExampleDictBatches(RecordBatchVector* out) { |
| 215 | // Just the same batch, repeated a few times |
no test coverage detected