| 166 | } |
| 167 | |
| 168 | std::shared_ptr<RecordBatch> SingleBatch(Fragment* fragment) { |
| 169 | auto batches = IteratorToVector(Batches(fragment)); |
| 170 | EXPECT_EQ(batches.size(), 1); |
| 171 | return batches.front(); |
| 172 | } |
| 173 | |
| 174 | void CountRowsAndBatchesInScan(Fragment* fragment, int64_t expected_rows, |
| 175 | int64_t expected_batches) { |
nothing calls this directly
no test coverage detected