1 | #include "duckdb/execution/operator/helper/physical_execute.hpp" |
---|---|
2 | #include "duckdb/execution/physical_plan_generator.hpp" |
3 | #include "duckdb/planner/operator/logical_execute.hpp" |
4 | |
5 | using namespace duckdb; |
6 | using namespace std; |
7 | |
8 | unique_ptr<PhysicalOperator> PhysicalPlanGenerator::CreatePlan(LogicalExecute &op) { |
9 | assert(op.children.size() == 0); |
10 | return make_unique<PhysicalExecute>(op.prepared->plan.get()); |
11 | } |
12 |