| 35 | namespace arrow::acero { |
| 36 | |
| 37 | std::shared_ptr<Table> TestTable(int start, int step, int rows_per_batch, |
| 38 | int num_batches) { |
| 39 | return gen::Gen({{"timestamp", gen::Step(start, step)}, {"str", gen::Random(utf8())}}) |
| 40 | ->FailOnError() |
| 41 | ->Table(rows_per_batch, num_batches); |
| 42 | } |
| 43 | |
| 44 | TEST(SortedMergeNode, Basic) { |
| 45 | auto table1 = TestTable( |