| 42 | static constexpr int kNumBatches = 32; |
| 43 | |
| 44 | std::shared_ptr<Table> TestTable() { |
| 45 | return gen::Gen({{"up", gen::Step()}, {"down", gen::Step(/*start=*/0, /*step=*/-1)}}) |
| 46 | ->FailOnError() |
| 47 | ->Table(kRowsPerBatch, kNumBatches); |
| 48 | } |
| 49 | |
| 50 | void CheckOrderBy(OrderByNodeOptions options) { |
| 51 | constexpr random::SeedType kSeed = 42; |
no test coverage detected