| 63 | } // namespace |
| 64 | |
| 65 | ExecBatchSourceNodeOptions::ExecBatchSourceNodeOptions( |
| 66 | std::shared_ptr<Schema> schema, std::vector<ExecBatch> batches, |
| 67 | ::arrow::internal::Executor* io_executor) |
| 68 | : SchemaSourceNodeOptions(std::move(schema), VecToItMaker(std::move(batches)), |
| 69 | io_executor) {} |
| 70 | |
| 71 | ExecBatchSourceNodeOptions::ExecBatchSourceNodeOptions(std::shared_ptr<Schema> schema, |
| 72 | std::vector<ExecBatch> batches, |
nothing calls this directly
no test coverage detected