| 1 | #include "duckdb/execution/operator/scan/physical_table_function.hpp" |
|---|---|
| 2 | #include "duckdb/execution/physical_plan_generator.hpp" |
| 3 | #include "duckdb/planner/operator/logical_table_function.hpp" |
| 4 | |
| 5 | using namespace duckdb; |
| 6 | using namespace std; |
| 7 | |
| 8 | unique_ptr<PhysicalOperator> PhysicalPlanGenerator::CreatePlan(LogicalTableFunction &op) { |
| 9 | assert(op.children.size() == 0); |
| 10 | |
| 11 | return make_unique<PhysicalTableFunction>(op.types, op.function, move(op.bind_data), move(op.parameters)); |
| 12 | } |
| 13 |