| 1657 | namespace { |
| 1658 | |
| 1659 | Result<AsyncGenerator<std::optional<ExecBatch>>> MakeIntegerBatchGenForTest( |
| 1660 | const std::vector<std::function<int64_t(int)>>& gens, |
| 1661 | const std::shared_ptr<Schema>& schema, int num_batches, int batch_size) { |
| 1662 | return MakeIntegerBatchGen(gens, schema, num_batches, batch_size); |
| 1663 | } |
| 1664 | |
| 1665 | template <typename T> |
| 1666 | T GetEnvValue(const std::string& var, T default_value) { |
nothing calls this directly
no test coverage detected